在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 毕业设计---物业管理系统JAVA实现.zip

毕业设计---物业管理系统JAVA实现.zip

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:26.67M
  • 下载次数:10
  • 浏览次数:77
  • 发布时间:2021-12-06
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
毕业设计---物业管理系统! 这份代码在我的电脑上可以运行,如果你们不能运行,可以私聊我! 我尽量帮你们调试!
【实例截图】
【核心代码】
16359647403320914750.zip
└── PropertyManagement
├── build
│   └── classes
│   ├── com
│   │   └── cissst
│   │   ├── dao
│   │   │   ├── IAdminDao.class
│   │   │   ├── ICustomAccountDao.class
│   │   │   ├── IHouseDao.class
│   │   │   ├── IInspectionDao.class
│   │   │   ├── IMaintainDao.class
│   │   │   ├── impl
│   │   │   │   ├── AdminDaoImpl.class
│   │   │   │   ├── CustomAccountDaoImpl.class
│   │   │   │   ├── HouseDaoImpl.class
│   │   │   │   ├── InspectionDaoImpl.class
│   │   │   │   ├── MaintainDaoImpl.class
│   │   │   │   └── NoticeDaoImpl.class
│   │   │   └── INoticeDao.class
│   │   ├── entity
│   │   │   ├── Admin.class
│   │   │   ├── CustomAccount.class
│   │   │   ├── House.class
│   │   │   ├── Inspection.class
│   │   │   ├── Maintain.class
│   │   │   └── Notice.class
│   │   ├── service
│   │   │   ├── IAdminService.class
│   │   │   ├── ICustomAccountService.class
│   │   │   ├── IHouseService.class
│   │   │   ├── IInspectionService.class
│   │   │   ├── IMaintainService.class
│   │   │   ├── impl
│   │   │   │   ├── AdminServiceImpl.class
│   │   │   │   ├── CustomAccountServiceImpl.class
│   │   │   │   ├── HouseServiceImpl.class
│   │   │   │   ├── InspectionServiceImpl.class
│   │   │   │   ├── MaintainServiceImpl.class
│   │   │   │   └── NoticeServiceImpl.class
│   │   │   └── INoticeService.class
│   │   ├── servlet
│   │   │   ├── AdminServlet.class
│   │   │   ├── CustomAccountServlet.class
│   │   │   ├── HouseServlet.class
│   │   │   ├── InspectionServlet.class
│   │   │   ├── MaintainServlet.class
│   │   │   ├── NoticeServlet.class
│   │   │   └── UserServlet.class
│   │   └── util
│   │   ├── DBUtil.class
│   │   └── MD5Util.class
│   └── database.properties
├── src
│   ├── com
│   │   └── cissst
│   │   ├── dao
│   │   │   ├── IAdminDao.java
│   │   │   ├── ICustomAccountDao.java
│   │   │   ├── IHouseDao.java
│   │   │   ├── IInspectionDao.java
│   │   │   ├── IMaintainDao.java
│   │   │   ├── impl
│   │   │   │   ├── AdminDaoImpl.java
│   │   │   │   ├── CustomAccountDaoImpl.java
│   │   │   │   ├── HouseDaoImpl.java
│   │   │   │   ├── InspectionDaoImpl.java
│   │   │   │   ├── MaintainDaoImpl.java
│   │   │   │   └── NoticeDaoImpl.java
│   │   │   └── INoticeDao.java
│   │   ├── entity
│   │   │   ├── Admin.java
│   │   │   ├── CustomAccount.java
│   │   │   ├── House.java
│   │   │   ├── Inspection.java
│   │   │   ├── Maintain.java
│   │   │   └── Notice.java
│   │   ├── service
│   │   │   ├── IAdminService.java
│   │   │   ├── ICustomAccountService.java
│   │   │   ├── IHouseService.java
│   │   │   ├── IInspectionService.java
│   │   │   ├── IMaintainService.java
│   │   │   ├── impl
│   │   │   │   ├── AdminServiceImpl.java
│   │   │   │   ├── CustomAccountServiceImpl.java
│   │   │   │   ├── HouseServiceImpl.java
│   │   │   │   ├── InspectionServiceImpl.java
│   │   │   │   ├── MaintainServiceImpl.java
│   │   │   │   └── NoticeServiceImpl.java
│   │   │   └── INoticeService.java
│   │   ├── servlet
│   │   │   ├── AdminServlet.java
│   │   │   ├── CustomAccountServlet.java
│   │   │   ├── HouseServlet.java
│   │   │   ├── InspectionServlet.java
│   │   │   ├── MaintainServlet.java
│   │   │   ├── NoticeServlet.java
│   │   │   └── UserServlet.java
│   │   └── util
│   │   ├── DBUtil.java
│   │   └── MD5Util.java
│   └── database.properties
└── WebContent
├── admin
│   ├── admin-add.jsp
│   ├── admin-edit.jsp
│   └── admin-list.jsp
├── bower_components
│   ├── bootstrap
│   │   ├── bower.json
│   │   ├── dist
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.css.map
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-theme.css
│   │   │   │   ├── bootstrap-theme.css.map
│   │   │   │   └── bootstrap-theme.min.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   └── js
│   │   │   ├── bootstrap.js
│   │   │   └── bootstrap.min.js
│   │   ├── fonts
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   └── glyphicons-halflings-regular.woff
│   │   ├── grunt
│   │   │   ├── bs-glyphicons-data-generator.js
│   │   │   ├── bs-lessdoc-parser.js
│   │   │   ├── bs-raw-files-generator.js
│   │   │   └── sauce_browsers.yml
│   │   ├── Gruntfile.js
│   │   ├── jquery
│   │   │   ├── bower.json
│   │   │   ├── component.json
│   │   │   ├── composer.json
│   │   │   ├── jquery.js
│   │   │   ├── jquery-migrate.js
│   │   │   ├── jquery-migrate.min.js
│   │   │   ├── jquery.min.js
│   │   │   ├── jquery.min.map
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── js
│   │   │   ├── affix.js
│   │   │   ├── alert.js
│   │   │   ├── button.js
│   │   │   ├── carousel.js
│   │   │   ├── collapse.js
│   │   │   ├── dropdown.js
│   │   │   ├── modal.js
│   │   │   ├── popover.js
│   │   │   ├── scrollspy.js
│   │   │   ├── tab.js
│   │   │   ├── tooltip.js
│   │   │   └── transition.js
│   │   ├── less
│   │   │   ├── alerts.less
│   │   │   ├── badges.less
│   │   │   ├── bootstrap.less
│   │   │   ├── breadcrumbs.less
│   │   │   ├── button-groups.less
│   │   │   ├── buttons.less
│   │   │   ├── carousel.less
│   │   │   ├── close.less
│   │   │   ├── code.less
│   │   │   ├── component-animations.less
│   │   │   ├── dropdowns.less
│   │   │   ├── forms.less
│   │   │   ├── glyphicons.less
│   │   │   ├── grid.less
│   │   │   ├── input-groups.less
│   │   │   ├── jumbotron.less
│   │   │   ├── labels.less
│   │   │   ├── list-group.less
│   │   │   ├── media.less
│   │   │   ├── mixins
│   │   │   │   ├── alerts.less
│   │   │   │   ├── background-variant.less
│   │   │   │   ├── border-radius.less
│   │   │   │   ├── buttons.less
│   │   │   │   ├── center-block.less
│   │   │   │   ├── clearfix.less
│   │   │   │   ├── forms.less
│   │   │   │   ├── gradients.less
│   │   │   │   ├── grid-framework.less
│   │   │   │   ├── grid.less
│   │   │   │   ├── hide-text.less
│   │   │   │   ├── image.less
│   │   │   │   ├── labels.less
│   │   │   │   ├── list-group.less
│   │   │   │   ├── nav-divider.less
│   │   │   │   ├── nav-vertical-align.less
│   │   │   │   ├── opacity.less
│   │   │   │   ├── pagination.less
│   │   │   │   ├── panels.less
│   │   │   │   ├── progress-bar.less
│   │   │   │   ├── reset-filter.less
│   │   │   │   ├── resize.less
│   │   │   │   ├── responsive-visibility.less
│   │   │   │   ├── size.less
│   │   │   │   ├── tab-focus.less
│   │   │   │   ├── table-row.less
│   │   │   │   ├── text-emphasis.less
│   │   │   │   ├── text-overflow.less
│   │   │   │   └── vendor-prefixes.less
│   │   │   ├── mixins.less
│   │   │   ├── modals.less
│   │   │   ├── navbar.less
│   │   │   ├── navs.less
│   │   │   ├── normalize.less
│   │   │   ├── pager.less
│   │   │   ├── pagination.less
│   │   │   ├── panels.less
│   │   │   ├── popovers.less
│   │   │   ├── print.less
│   │   │   ├── progress-bars.less
│   │   │   ├── responsive-embed.less
│   │   │   ├── responsive-utilities.less
│   │   │   ├── scaffolding.less
│   │   │   ├── tables.less
│   │   │   ├── theme.less
│   │   │   ├── thumbnails.less
│   │   │   ├── tooltip.less
│   │   │   ├── type.less
│   │   │   ├── utilities.less
│   │   │   ├── variables.less
│   │   │   └── wells.less
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── bootstrap-tour
│   │   ├── bower.json
│   │   ├── build
│   │   │   ├── css
│   │   │   │   ├── bootstrap-tour.css
│   │   │   │   └── bootstrap-tour.min.css
│   │   │   └── js
│   │   │   ├── bootstrap-tour.js
│   │   │   └── bootstrap-tour.min.js
│   │   ├── composer.json
│   │   ├── docs
│   │   │   ├── assets
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap-tour.css
│   │   │   │   │   ├── bootstrap-tour.min.css
│   │   │   │   │   └── index.css
│   │   │   │   ├── fonts
│   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   │   ├── img
│   │   │   │   │   ├── apple-touch-icon-144-precomposed.png
│   │   │   │   │   ├── favicon.png
│   │   │   │   │   └── masthead-pattern.png
│   │   │   │   ├── js
│   │   │   │   │   ├── bootstrap-tour.js
│   │   │   │   │   ├── bootstrap-tour.min.js
│   │   │   │   │   └── index.js
│   │   │   │   └── vendor
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.js
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── html5shiv.js
│   │   │   │   ├── jquery.js
│   │   │   │   ├── jquery.smoothscroll.js
│   │   │   │   ├── jquery.smoothscroll.min.js
│   │   │   │   ├── md5.js
│   │   │   │   ├── prism.css
│   │   │   │   └── prism.js
│   │   │   ├── index.coffee
│   │   │   ├── index.html
│   │   │   ├── index.less
│   │   │   └── page.html
│   │   ├── Gruntfile.coffee
│   │   ├── index.html
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── src
│   │   ├── coffee
│   │   │   └── bootstrap-tour.coffee
│   │   ├── less
│   │   │   └── bootstrap-tour.less
│   │   └── spec
│   │   └── bootstrap-tour.spec.coffee
│   ├── chosen
│   │   ├── chosen.css
│   │   ├── chosen.jquery.js
│   │   ├── chosen.jquery.min.js
│   │   ├── chosen.min.css
│   │   ├── chosen.proto.js
│   │   ├── chosen.proto.min.js
│   │   ├── chosen-sprite@2x.png
│   │   ├── chosen-sprite.png
│   │   ├── docsupport
│   │   │   ├── chosen.png
│   │   │   ├── oss-credit.png
│   │   │   ├── prism.css
│   │   │   ├── prism.js
│   │   │   └── style.css
│   │   ├── index.html
│   │   ├── index.proto.html
│   │   └── options.html
│   ├── colorbox
│   │   ├── bower.json
│   │   ├── colorbox.ai
│   │   ├── colorbox.jquery.json
│   │   ├── content
│   │   │   ├── ajax.html
│   │   │   ├── daisy@2x.jpg
│   │   │   ├── daisy.jpg
│   │   │   ├── homer.jpg
│   │   │   ├── marylou.jpg
│   │   │   ├── ohoopee1.jpg
│   │   │   ├── ohoopee2.jpg
│   │   │   └── ohoopee3.jpg
│   │   ├── example1
│   │   │   ├── colorbox.css
│   │   │   ├── images
│   │   │   │   ├── border.png
│   │   │   │   ├── controls.png
│   │   │   │   ├── loading_background.png
│   │   │   │   ├── loading.gif
│   │   │   │   └── overlay.png
│   │   │   └── index.html
│   │   ├── example2
│   │   │   ├── colorbox.css
│   │   │   ├── images
│   │   │   │   ├── controls.png
│   │   │   │   └── loading.gif
│   │   │   └── index.html
│   │   ├── example3
│   │   │   ├── colorbox.css
│   │   │   ├── images
│   │   │   │   ├── controls.png
│   │   │   │   └── loading.gif
│   │   │   └── index.html
│   │   ├── example4
│   │   │   ├── colorbox.css
│   │   │   ├── images
│   │   │   │   ├── border1.png
│   │   │   │   ├── border2.png
│   │   │   │   └── loading.gif
│   │   │   └── index.html
│   │   ├── example5
│   │   │   ├── colorbox.css
│   │   │   ├── images
│   │   │   │   ├── border.png
│   │   │   │   ├── controls.png
│   │   │   │   ├── loading_background.png
│   │   │   │   └── loading.gif
│   │   │   └── index.html
│   │   ├── i18n
│   │   │   ├── jquery.colorbox-ar.js
│   │   │   ├── jquery.colorbox-bg.js
│   │   │   ├── jquery.colorbox-ca.js
│   │   │   ├── jquery.colorbox-cs.js
│   │   │   ├── jquery.colorbox-da.js
│   │   │   ├── jquery.colorbox-de.js
│   │   │   ├── jquery.colorbox-es.js
│   │   │   ├── jquery.colorbox-et.js
│   │   │   ├── jquery.colorbox-fa.js
│   │   │   ├── jquery.colorbox-fi.js
│   │   │   ├── jquery.colorbox-fr.js
│   │   │   ├── jquery.colorbox-gl.js
│   │   │   ├── jquery.colorbox-he.js
│   │   │   ├── jquery.colorbox-hr.js
│   │   │   ├── jquery.colorbox-hu.js
│   │   │   ├── jquery.colorbox-id.js
│   │   │   ├── jquery.colorbox-it.js
│   │   │   ├── jquery.colorbox-ja.js
│   │   │   ├── jquery.colorbox-kr.js
│   │   │   ├── jquery.colorbox-lv.js
│   │   │   ├── jquery.colorbox-nl.js
│   │   │   ├── jquery.colorbox-no.js
│   │   │   ├── jquery.colorbox-pl.js
│   │   │   ├── jquery.colorbox-pt-br.js
│   │   │   ├── jquery.colorbox-ro.js
│   │   │   ├── jquery.colorbox-ru.js
│   │   │   ├── jquery.colorbox-si.js
│   │   │   ├── jquery.colorbox-sk.js
│   │   │   ├── jquery.colorbox-sv.js
│   │   │   ├── jquery.colorbox-tr.js
│   │   │   ├── jquery.colorbox-uk.js
│   │   │   └── jquery.colorbox-zh-CN.js
│   │   ├── jquery.colorbox.js
│   │   ├── jquery.colorbox-min.js
│   │   └── README.md
│   ├── fullcalendar
│   │   ├── bower.json
│   │   ├── changelog.md
│   │   ├── dist
│   │   │   ├── fullcalendar.css
│   │   │   ├── fullcalendar.js
│   │   │   ├── fullcalendar.min.js
│   │   │   ├── fullcalendar.print.css
│   │   │   ├── gcal.js
│   │   │   ├── lang
│   │   │   │   ├── ar.js
│   │   │   │   ├── ar-ma.js
│   │   │   │   ├── ar-sa.js
│   │   │   │   ├── bg.js
│   │   │   │   ├── ca.js
│   │   │   │   ├── cs.js
│   │   │   │   ├── da.js
│   │   │   │   ├── de-at.js
│   │   │   │   ├── de.js
│   │   │   │   ├── el.js
│   │   │   │   ├── en-au.js
│   │   │   │   ├── en-ca.js
│   │   │   │   ├── en-gb.js
│   │   │   │   ├── es.js
│   │   │   │   ├── fa.js
│   │   │   │   ├── fi.js
│   │   │   │   ├── fr-ca.js
│   │   │   │   ├── fr.js
│   │   │   │   ├── hi.js
│   │   │   │   ├── hr.js
│   │   │   │   ├── hu.js
│   │   │   │   ├── id.js
│   │   │   │   ├── is.js
│   │   │   │   ├── it.js
│   │   │   │   ├── ja.js
│   │   │   │   ├── ko.js
│   │   │   │   ├── lt.js
│   │   │   │   ├── lv.js
│   │   │   │   ├── nl.js
│   │   │   │   ├── pl.js
│   │   │   │   ├── pt-br.js
│   │   │   │   ├── pt.js
│   │   │   │   ├── ro.js
│   │   │   │   ├── ru.js
│   │   │   │   ├── sk.js
│   │   │   │   ├── sl.js
│   │   │   │   ├── sr-cyrl.js
│   │   │   │   ├── sr.js
│   │   │   │   ├── sv.js
│   │   │   │   ├── th.js
│   │   │   │   ├── tr.js
│   │   │   │   ├── uk.js
│   │   │   │   ├── vi.js
│   │   │   │   ├── zh-cn.js
│   │   │   │   └── zh-tw.js
│   │   │   └── lang-all.js
│   │   ├── license.txt
│   │   └── readme.md
│   ├── jquery
│   │   ├── bower.json
│   │   ├── component.json
│   │   ├── composer.json
│   │   ├── jquery.js
│   │   ├── jquery-migrate.js
│   │   ├── jquery-migrate.min.js
│   │   ├── jquery.min.js
│   │   ├── jquery.min.map
│   │   ├── package.json
│   │   └── README.md
│   ├── moment
│   │   ├── bower.json
│   │   ├── lang
│   │   │   ├── ar.js
│   │   │   ├── ar-ma.js
│   │   │   ├── ar-sa.js
│   │   │   ├── az.js
│   │   │   ├── bg.js
│   │   │   ├── bn.js
│   │   │   ├── br.js
│   │   │   ├── bs.js
│   │   │   ├── ca.js
│   │   │   ├── cs.js
│   │   │   ├── cv.js
│   │   │   ├── cy.js
│   │   │   ├── da.js
│   │   │   ├── de-at.js
│   │   │   ├── de.js
│   │   │   ├── el.js
│   │   │   ├── en-au.js
│   │   │   ├── en-ca.js
│   │   │   ├── en-gb.js
│   │   │   ├── eo.js
│   │   │   ├── es.js
│   │   │   ├── et.js
│   │   │   ├── eu.js
│   │   │   ├── fa.js
│   │   │   ├── fi.js
│   │   │   ├── fo.js
│   │   │   ├── fr-ca.js
│   │   │   ├── fr.js
│   │   │   ├── gl.js
│   │   │   ├── he.js
│   │   │   ├── hi.js
│   │   │   ├── hr.js
│   │   │   ├── hu.js
│   │   │   ├── hy-am.js
│   │   │   ├── id.js
│   │   │   ├── is.js
│   │   │   ├── it.js
│   │   │   ├── ja.js
│   │   │   ├── ka.js
│   │   │   ├── km.js
│   │   │   ├── ko.js
│   │   │   ├── lb.js
│   │   │   ├── lt.js
│   │   │   ├── lv.js
│   │   │   ├── mk.js
│   │   │   ├── ml.js
│   │   │   ├── mr.js
│   │   │   ├── ms-my.js
│   │   │   ├── nb.js
│   │   │   ├── ne.js
│   │   │   ├── nl.js
│   │   │   ├── nn.js
│   │   │   ├── pl.js
│   │   │   ├── pt-br.js
│   │   │   ├── pt.js
│   │   │   ├── ro.js
│   │   │   ├── ru.js
│   │   │   ├── sk.js
│   │   │   ├── sl.js
│   │   │   ├── sq.js
│   │   │   ├── sr-cyrl.js
│   │   │   ├── sr.js
│   │   │   ├── sv.js
│   │   │   ├── ta.js
│   │   │   ├── th.js
│   │   │   ├── tl-ph.js
│   │   │   ├── tr.js
│   │   │   ├── tzm.js
│   │   │   ├── tzm-latn.js
│   │   │   ├── uk.js
│   │   │   ├── uz.js
│   │   │   ├── vi.js
│   │   │   ├── zh-cn.js
│   │   │   └── zh-tw.js
│   │   ├── LICENSE
│   │   ├── min
│   │   │   ├── langs.js
│   │   │   ├── langs.min.js
│   │   │   ├── moment.min.js
│   │   │   ├── moment-with-langs.js
│   │   │   └── moment-with-langs.min.js
│   │   ├── moment.js
│   │   └── readme.md
│   └── responsive-tables
│   ├── index.html
│   ├── javascripts
│   │   ├── app.js
│   │   ├── forms.jquery.js
│   │   ├── jquery.customforms.js
│   │   ├── jquery.min.js
│   │   ├── jquery.orbit-1.3.0.js
│   │   ├── jquery.placeholder.min.js
│   │   ├── jquery.reveal.js
│   │   └── modernizr.foundation.js
│   ├── responsive-tables.css
│   ├── responsive-tables.js
│   └── stylesheets
│   ├── app.css
│   ├── forms.css
│   ├── globals.css
│   ├── grid.css
│   ├── ie.css
│   ├── mobile.css
│   ├── orbit.css
│   ├── reveal.css
│   ├── typography.css
│   └── ui.css
├── css
│   ├── animate.min.css
│   ├── bootstrap-cerulean.min.css
│   ├── bootstrap-cyborg.min.css
│   ├── bootstrap-darkly.min.css
│   ├── bootstrap-datetimepicker.min.css
│   ├── bootstrap-lumen.min.css
│   ├── bootstrap.min.css
│   ├── bootstrap-simplex.min.css
│   ├── bootstrap-slate.min.css
│   ├── bootstrap-spacelab.min.css
│   ├── bootstrap-united.min.css
│   ├── charisma-app.css
│   ├── elfinder.min.css
│   ├── elfinder.theme.css
│   ├── jquery.iphone.toggle.css
│   ├── jquery.noty.css
│   ├── jquery-ui-1.8.21.custom.css
│   ├── noty_theme_default.css
│   └── uploadify.css
├── customAccount
│   ├── custom-add.jsp
│   ├── custom-edit.jsp
│   ├── custom-list.jsp
│   ├── user-change-passwd.jsp
│   └── user-custom-list.jsp
├── fonts
│   ├── glyphicons-halflings-regular.eot
│   ├── glyphicons-halflings-regular.svg
│   ├── glyphicons-halflings-regular.ttf
│   └── glyphicons-halflings-regular.woff
├── house
│   ├── house-add.jsp
│   ├── house-edit.jsp
│   ├── house-list.jsp
│   └── user-house-list.jsp
├── img
│   ├── ajax-loaders
│   │   ├── ajax-loader-1.gif
│   │   ├── ajax-loader-2.gif
│   │   ├── ajax-loader-3.gif
│   │   ├── ajax-loader-4.gif
│   │   ├── ajax-loader-5.gif
│   │   ├── ajax-loader-6.gif
│   │   ├── ajax-loader-7.gif
│   │   └── ajax-loader-8.gif
│   ├── bg.jpg
│   ├── favicon.ico
│   ├── iphone-style-checkboxes
│   │   ├── off.png
│   │   ├── on.png
│   │   ├── slider_center.png
│   │   ├── slider_left.png
│   │   ├── slider.png
│   │   └── slider_right.png
│   ├── logo20.png
│   ├── logo.png
│   ├── star-half.png
│   ├── star-off.png
│   ├── star-on.png
│   ├── thumb.png
│   └── uploadify-cancel.png
├── index2.jsp
├── index.jsp
├── inspection
│   ├── inspection-add.jsp
│   ├── inspection-edit.jsp
│   └── inspection-list.jsp
├── js
│   ├── bootstrap-datetimepicker.js
│   ├── bootstrap-datetimepicker.zh-CN.js
│   ├── charisma.js
│   ├── html5shiv.js
│   ├── init-chart.js
│   ├── jquery.autogrow-textarea.js
│   ├── jquery.cookie.js
│   ├── jquery.dataTables.min.js
│   ├── jquery.history.js
│   ├── jquery.iphone.toggle.js
│   ├── jquery.noty.js
│   ├── jquery.raty.min.js
│   ├── jquery.uploadify-3.1.min.js
│   └── validator.min.js
├── login.jsp
├── maintain
│   ├── maintain-add.jsp
│   ├── maintain-edit.jsp
│   ├── maintain-list.jsp
│   ├── user-maintain-add.jsp
│   └── user-maintain-list.jsp
├── META-INF
│   └── MANIFEST.MF
├── notice
│   ├── notice-add.jsp
│   ├── notice-edit.jsp
│   ├── notice-list.jsp
│   ├── notice-view.jsp
│   └── user-notice-list.jsp
└── WEB-INF
├── lib
│   ├── annotations-api.jar
│   ├── catalina-ant.jar
│   ├── catalina-ha.jar
│   ├── catalina.jar
│   ├── catalina-tribes.jar
│   ├── commons-dbcp-1.4.jar
│   ├── commons-pool.jar
│   ├── el-api.jar
│   ├── jasper-el.jar
│   ├── jasper.jar
│   ├── jasper-jdt.jar
│   ├── jsp-api.jar
│   ├── jstl-1.1.2.jar
│   ├── mysql-connector-java-5.1.35-bin.jar
│   ├── ojdbc14_11g.jar
│   ├── rt.jar
│   ├── servlet-api.jar
│   ├── standard-1.1.2.jar
│   ├── tomcat-coyote.jar
│   ├── tomcat-dbcp.jar
│   ├── tomcat-i18n-es.jar
│   ├── tomcat-i18n-fr.jar
│   └── tomcat-i18n-ja.jar
└── web.xml

90 directories, 609 files

标签:

实例下载地址

毕业设计---物业管理系统JAVA实现.zip

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警