├── LICENSE ├── LibrarySystem ├── .classpath ├── .mymetadata ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name ├── WebRoot │ ├── META-INF │ │ └── MANIFEST.MF │ ├── WEB-INF │ │ ├── admin │ │ │ ├── adminManage.jsp │ │ │ ├── backManage.jsp │ │ │ ├── bookManage.jsp │ │ │ ├── bookTypeManage.jsp │ │ │ ├── borrowManage.jsp │ │ │ ├── borrowSearch.jsp │ │ │ ├── forfeitManage.jsp │ │ │ ├── readerManage.jsp │ │ │ └── readerTypeManage.jsp │ │ ├── classes │ │ │ ├── com │ │ │ │ └── cc │ │ │ │ │ └── library │ │ │ │ │ ├── action │ │ │ │ │ ├── AdminInfoAction.class │ │ │ │ │ ├── AdminLoginAction.class │ │ │ │ │ ├── AdminManageAction$1.class │ │ │ │ │ ├── AdminManageAction.class │ │ │ │ │ ├── AuthorizationAction$1.class │ │ │ │ │ ├── AuthorizationAction.class │ │ │ │ │ ├── BackManageAction$1.class │ │ │ │ │ ├── BackManageAction.class │ │ │ │ │ ├── BookAction$1.class │ │ │ │ │ ├── BookAction.class │ │ │ │ │ ├── BookManageAction$1.class │ │ │ │ │ ├── BookManageAction.class │ │ │ │ │ ├── BookTypeManageAction$1.class │ │ │ │ │ ├── BookTypeManageAction.class │ │ │ │ │ ├── BorrowAction$1.class │ │ │ │ │ ├── BorrowAction.class │ │ │ │ │ ├── BorrowManageAction$1.class │ │ │ │ │ ├── BorrowManageAction.class │ │ │ │ │ ├── BorrowSearchAction.class │ │ │ │ │ ├── FileDownloadAction.class │ │ │ │ │ ├── FileUploadAction.class │ │ │ │ │ ├── ForfeitAction$1.class │ │ │ │ │ ├── ForfeitAction.class │ │ │ │ │ ├── ForfeitManageAction$1.class │ │ │ │ │ ├── ForfeitManageAction.class │ │ │ │ │ ├── ReaderInfoAction.class │ │ │ │ │ ├── ReaderLoginAction.class │ │ │ │ │ ├── ReaderManageAction$1.class │ │ │ │ │ ├── ReaderManageAction.class │ │ │ │ │ ├── ReaderTypeManageAction.class │ │ │ │ │ ├── fileuploadmessage.properties │ │ │ │ │ └── interceptor │ │ │ │ │ │ ├── AdminInterceptor.class │ │ │ │ │ │ ├── BackInterceptor.class │ │ │ │ │ │ ├── BookInterceptor.class │ │ │ │ │ │ ├── BookTypeInterceptor.class │ │ │ │ │ │ ├── BorrowInterceptor.class │ │ │ │ │ │ ├── ForfeitInterceptor.class │ │ │ │ │ │ ├── ReaderInterceptor.class │ │ │ │ │ │ └── ReaderTypeInterceptor.class │ │ │ │ │ ├── dao │ │ │ │ │ ├── AdminDao.class │ │ │ │ │ ├── AuthorizationDao.class │ │ │ │ │ ├── BackDao.class │ │ │ │ │ ├── BookDao.class │ │ │ │ │ ├── BookTypeDao.class │ │ │ │ │ ├── BorrowDao.class │ │ │ │ │ ├── ForfeitDao.class │ │ │ │ │ ├── ReaderDao.class │ │ │ │ │ ├── ReaderTypeDao.class │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AdminDaoImpl$1.class │ │ │ │ │ │ ├── AdminDaoImpl.class │ │ │ │ │ │ ├── AuthorizationDaoImpl.class │ │ │ │ │ │ ├── BackDaoImpl$1.class │ │ │ │ │ │ ├── BackDaoImpl$2.class │ │ │ │ │ │ ├── BackDaoImpl.class │ │ │ │ │ │ ├── BookDaoImpl$1.class │ │ │ │ │ │ ├── BookDaoImpl.class │ │ │ │ │ │ ├── BookTypeDaoImpl$1.class │ │ │ │ │ │ ├── BookTypeDaoImpl.class │ │ │ │ │ │ ├── BorrowDaoImpl$1.class │ │ │ │ │ │ ├── BorrowDaoImpl.class │ │ │ │ │ │ ├── ForfeitDaoImpl$1.class │ │ │ │ │ │ ├── ForfeitDaoImpl.class │ │ │ │ │ │ ├── ReaderDaoImpl$1.class │ │ │ │ │ │ ├── ReaderDaoImpl.class │ │ │ │ │ │ └── ReaderTypeDaoImpl.class │ │ │ │ │ ├── domain │ │ │ │ │ ├── Admin.class │ │ │ │ │ ├── Admin.hbm.xml │ │ │ │ │ ├── Authorization.class │ │ │ │ │ ├── Authorization.hbm.xml │ │ │ │ │ ├── BackInfo.class │ │ │ │ │ ├── BackInfo.hbm.xml │ │ │ │ │ ├── Book.class │ │ │ │ │ ├── Book.hbm.xml │ │ │ │ │ ├── BookType.class │ │ │ │ │ ├── BookType.hbm.xml │ │ │ │ │ ├── BorrowInfo.class │ │ │ │ │ ├── BorrowInfo.hbm.xml │ │ │ │ │ ├── ForfeitInfo.class │ │ │ │ │ ├── ForfeitInfo.hbm.xml │ │ │ │ │ ├── PageBean.class │ │ │ │ │ ├── Reader.class │ │ │ │ │ ├── Reader.hbm.xml │ │ │ │ │ ├── ReaderType.class │ │ │ │ │ └── ReaderType.hbm.xml │ │ │ │ │ ├── quartz │ │ │ │ │ └── CheckBorrowInfo.class │ │ │ │ │ ├── service │ │ │ │ │ ├── AdminService.class │ │ │ │ │ ├── AuthorizationService.class │ │ │ │ │ ├── BackService.class │ │ │ │ │ ├── BookService.class │ │ │ │ │ ├── BookTypeService.class │ │ │ │ │ ├── BorrowService.class │ │ │ │ │ ├── ForfeitService.class │ │ │ │ │ ├── ReaderService.class │ │ │ │ │ ├── ReaderTypeService.class │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AdminServiceImpl.class │ │ │ │ │ │ ├── AuthorizationServiceImpl.class │ │ │ │ │ │ ├── BackServiceImpl.class │ │ │ │ │ │ ├── BookServiceImpl.class │ │ │ │ │ │ ├── BookTypeServiceImpl.class │ │ │ │ │ │ ├── BorrowServiceImpl.class │ │ │ │ │ │ ├── ForfeitServiceImpl.class │ │ │ │ │ │ ├── ReaderServiceImpl.class │ │ │ │ │ │ └── ReaderTypeServiceImpl.class │ │ │ │ │ ├── test │ │ │ │ │ ├── BaseSpring.class │ │ │ │ │ ├── TestAdmin.class │ │ │ │ │ ├── TestBack.class │ │ │ │ │ ├── TestBook.class │ │ │ │ │ ├── TestBookType$1.class │ │ │ │ │ ├── TestBookType.class │ │ │ │ │ ├── TestBorrow.class │ │ │ │ │ ├── TestBorrowInfo.class │ │ │ │ │ ├── TestReader.class │ │ │ │ │ └── TestSessionFactory.class │ │ │ │ │ ├── util │ │ │ │ │ ├── CheckUtils.class │ │ │ │ │ └── Md5Utils.class │ │ │ │ │ └── web │ │ │ │ │ └── filter │ │ │ │ │ ├── AdminFilter.class │ │ │ │ │ └── ReaderFilter.class │ │ │ ├── hibernate │ │ │ │ └── hibernate.cfg.xml │ │ │ ├── spring │ │ │ │ ├── applicationContext-admin-info.xml │ │ │ │ ├── applicationContext-admin-login.xml │ │ │ │ ├── applicationContext-admin-manage.xml │ │ │ │ ├── applicationContext-authorization.xml │ │ │ │ ├── applicationContext-back-manage.xml │ │ │ │ ├── applicationContext-book-manage.xml │ │ │ │ ├── applicationContext-book.xml │ │ │ │ ├── applicationContext-bookType-manage.xml │ │ │ │ ├── applicationContext-borrow-manage.xml │ │ │ │ ├── applicationContext-borrow-search.xml │ │ │ │ ├── applicationContext-borrow.xml │ │ │ │ ├── applicationContext-db.xml │ │ │ │ ├── applicationContext-download.xml │ │ │ │ ├── applicationContext-forfeit-manage.xml │ │ │ │ ├── applicationContext-forfeit.xml │ │ │ │ ├── applicationContext-quartz.xml │ │ │ │ ├── applicationContext-reader-info.xml │ │ │ │ ├── applicationContext-reader-login.xml │ │ │ │ ├── applicationContext-reader-manage.xml │ │ │ │ ├── applicationContext-readerType-manage.xml │ │ │ │ ├── applicationContext-upload.xml │ │ │ │ └── applicationContext.xml │ │ │ ├── struts.xml │ │ │ └── struts2 │ │ │ │ ├── struts-admin-info.xml │ │ │ │ ├── struts-admin-login.xml │ │ │ │ ├── struts-admin-manage.xml │ │ │ │ ├── struts-authorization.xml │ │ │ │ ├── struts-back-manage.xml │ │ │ │ ├── struts-book-manage.xml │ │ │ │ ├── struts-book.xml │ │ │ │ ├── struts-bookType-manage.xml │ │ │ │ ├── struts-borrow-manage.xml │ │ │ │ ├── struts-borrow-search.xml │ │ │ │ ├── struts-borrow.xml │ │ │ │ ├── struts-download.xml │ │ │ │ ├── struts-forfeit-manage.xml │ │ │ │ ├── struts-forfeit.xml │ │ │ │ ├── struts-reader-info.xml │ │ │ │ ├── struts-reader-login.xml │ │ │ │ ├── struts-reader-manage.xml │ │ │ │ ├── struts-readerType-manage.xml │ │ │ │ └── struts-upload.xml │ │ ├── error.jsp │ │ ├── lib │ │ │ ├── JXL │ │ │ │ └── jxl.jar │ │ │ ├── db │ │ │ │ └── mysql-connector-java-5.1.10-bin.jar │ │ │ ├── hibernate3.5.6 │ │ │ │ ├── antlr-2.7.6.jar │ │ │ │ ├── commons-collections-3.1.jar │ │ │ │ ├── dom4j-1.6.1.jar │ │ │ │ ├── hibernate-annotations.jar │ │ │ │ ├── hibernate-commons-annotations.jar │ │ │ │ ├── hibernate3.jar │ │ │ │ ├── javassist-3.9.0.GA.jar │ │ │ │ ├── jta-1.1.jar │ │ │ │ ├── slf4j-api-1.5.8.jar │ │ │ │ └── slf4j-log4j12.jar │ │ │ ├── json │ │ │ │ ├── commons-beanutils-1.8.0.jar │ │ │ │ ├── commons-collections-3.2.1.jar │ │ │ │ ├── commons-lang-2.5.jar │ │ │ │ ├── commons-logging-1.1.1.jar │ │ │ │ ├── ezmorph-1.0.6.jar │ │ │ │ └── json-lib-2.4-jdk15.jar │ │ │ ├── junit │ │ │ │ └── junit.jar │ │ │ ├── quartz1.7.3 │ │ │ │ └── quartz-1.7.3.jar │ │ │ ├── spring2.5.5 │ │ │ │ ├── aspectjrt.jar │ │ │ │ ├── aspectjweaver.jar │ │ │ │ ├── c3p0-0.9.1.2.jar │ │ │ │ ├── cglib-nodep-2.1_3.jar │ │ │ │ ├── common-annotations.jar │ │ │ │ ├── commons-lang.jar │ │ │ │ ├── commons-logging.jar │ │ │ │ ├── log4j-1.2.15.jar │ │ │ │ └── spring.jar │ │ │ └── struts2 │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ ├── commons-io-1.3.2.jar │ │ │ │ ├── commons-logging.jar │ │ │ │ ├── freemarker-2.3.15.jar │ │ │ │ ├── ognl-2.7.3.jar │ │ │ │ ├── struts2-core-2.1.8.1.jar │ │ │ │ ├── struts2-spring-plugin-2.1.8.1.jar │ │ │ │ └── xwork-core-2.1.6.jar │ │ ├── reader │ │ │ ├── book.jsp │ │ │ ├── borrow.jsp │ │ │ └── forfeit.jsp │ │ └── web.xml │ ├── admin │ │ └── admin.jsp │ ├── adminLogin.jsp │ ├── ajax-lib │ │ └── ajaxutils.js │ ├── css │ │ ├── bootstrap-admin-theme.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── dataTables.bootstrap.css │ ├── download │ │ ├── book.xls │ │ └── reader.xls │ ├── error │ │ ├── 400.jsp │ │ ├── 500.jsp │ │ └── nopass.jsp │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── 404.png │ │ ├── 404view.png │ │ ├── 500.png │ │ ├── 500view.jpg │ │ └── nopass.png │ ├── index.jsp │ ├── jQuery │ │ ├── ajaxfileupload.js │ │ └── jquery-3.1.1.min.js │ ├── js │ │ ├── addAdmin.js │ │ ├── addBook.js │ │ ├── addBookNum.js │ │ ├── addBookType.js │ │ ├── addReader.js │ │ ├── addReaderType.js │ │ ├── adminLogin.js │ │ ├── adminUpdateInfo.js │ │ ├── adminUpdatePwd.js │ │ ├── ajax_upload.js │ │ ├── backBook.js │ │ ├── batchAddBook.js │ │ ├── batchAddReader.js │ │ ├── bootstrap-dropdown.min.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── borrowBook.js │ │ ├── dataTables.bootstrap.js │ │ ├── deleteAdmin.js │ │ ├── deleteBook.js │ │ ├── deleteBookType.js │ │ ├── deleteReader.js │ │ ├── exportBook.js │ │ ├── exportReader.js │ │ ├── getAllBookTypes.js │ │ ├── getAllReaderTypes.js │ │ ├── getBackInfo.js │ │ ├── getBookInfo.js │ │ ├── getBookTypes.js │ │ ├── getBorrowInfo.js │ │ ├── getForfeitInfo.js │ │ ├── getReader.js │ │ ├── getReaderBackInfo.js │ │ ├── getReaderBookInfo.js │ │ ├── getReaderForfeitInfo.js │ │ ├── jquery.dataTables.zh_CN.js │ │ ├── login.js │ │ ├── npm.js │ │ ├── pay.js │ │ ├── reader.js │ │ ├── readerUpdateInfo.js │ │ ├── readerUpdatePwd.js │ │ ├── renewBook.js │ │ ├── updateAdmin.js │ │ ├── updateAuthorization.js │ │ ├── updateBook.js │ │ ├── updateBookType.js │ │ ├── updateReader.js │ │ └── updateReaderType.js │ ├── login.jsp │ └── reader.jsp ├── config │ ├── hibernate │ │ └── hibernate.cfg.xml │ ├── spring │ │ ├── applicationContext-admin-info.xml │ │ ├── applicationContext-admin-login.xml │ │ ├── applicationContext-admin-manage.xml │ │ ├── applicationContext-authorization.xml │ │ ├── applicationContext-back-manage.xml │ │ ├── applicationContext-book-manage.xml │ │ ├── applicationContext-book.xml │ │ ├── applicationContext-bookType-manage.xml │ │ ├── applicationContext-borrow-manage.xml │ │ ├── applicationContext-borrow-search.xml │ │ ├── applicationContext-borrow.xml │ │ ├── applicationContext-db.xml │ │ ├── applicationContext-download.xml │ │ ├── applicationContext-forfeit-manage.xml │ │ ├── applicationContext-forfeit.xml │ │ ├── applicationContext-quartz.xml │ │ ├── applicationContext-reader-info.xml │ │ ├── applicationContext-reader-login.xml │ │ ├── applicationContext-reader-manage.xml │ │ ├── applicationContext-readerType-manage.xml │ │ ├── applicationContext-upload.xml │ │ └── applicationContext.xml │ ├── struts.xml │ └── struts2 │ │ ├── struts-admin-info.xml │ │ ├── struts-admin-login.xml │ │ ├── struts-admin-manage.xml │ │ ├── struts-authorization.xml │ │ ├── struts-back-manage.xml │ │ ├── struts-book-manage.xml │ │ ├── struts-book.xml │ │ ├── struts-bookType-manage.xml │ │ ├── struts-borrow-manage.xml │ │ ├── struts-borrow-search.xml │ │ ├── struts-borrow.xml │ │ ├── struts-download.xml │ │ ├── struts-forfeit-manage.xml │ │ ├── struts-forfeit.xml │ │ ├── struts-reader-info.xml │ │ ├── struts-reader-login.xml │ │ ├── struts-reader-manage.xml │ │ ├── struts-readerType-manage.xml │ │ └── struts-upload.xml ├── src │ └── com │ │ └── cc │ │ └── library │ │ ├── action │ │ ├── AdminInfoAction.java │ │ ├── AdminLoginAction.java │ │ ├── AdminManageAction.java │ │ ├── AuthorizationAction.java │ │ ├── BackManageAction.java │ │ ├── BookAction.java │ │ ├── BookManageAction.java │ │ ├── BookTypeManageAction.java │ │ ├── BorrowAction.java │ │ ├── BorrowManageAction.java │ │ ├── BorrowSearchAction.java │ │ ├── FileDownloadAction.java │ │ ├── FileUploadAction.java │ │ ├── ForfeitAction.java │ │ ├── ForfeitManageAction.java │ │ ├── ReaderInfoAction.java │ │ ├── ReaderLoginAction.java │ │ ├── ReaderManageAction.java │ │ ├── ReaderTypeManageAction.java │ │ ├── fileuploadmessage.properties │ │ └── interceptor │ │ │ ├── AdminInterceptor.java │ │ │ ├── BackInterceptor.java │ │ │ ├── BookInterceptor.java │ │ │ ├── BookTypeInterceptor.java │ │ │ ├── BorrowInterceptor.java │ │ │ ├── ForfeitInterceptor.java │ │ │ ├── ReaderInterceptor.java │ │ │ └── ReaderTypeInterceptor.java │ │ ├── dao │ │ ├── AdminDao.java │ │ ├── AuthorizationDao.java │ │ ├── BackDao.java │ │ ├── BookDao.java │ │ ├── BookTypeDao.java │ │ ├── BorrowDao.java │ │ ├── ForfeitDao.java │ │ ├── ReaderDao.java │ │ ├── ReaderTypeDao.java │ │ └── impl │ │ │ ├── AdminDaoImpl.java │ │ │ ├── AuthorizationDaoImpl.java │ │ │ ├── BackDaoImpl.java │ │ │ ├── BookDaoImpl.java │ │ │ ├── BookTypeDaoImpl.java │ │ │ ├── BorrowDaoImpl.java │ │ │ ├── ForfeitDaoImpl.java │ │ │ ├── ReaderDaoImpl.java │ │ │ └── ReaderTypeDaoImpl.java │ │ ├── domain │ │ ├── Admin.hbm.xml │ │ ├── Admin.java │ │ ├── Authorization.hbm.xml │ │ ├── Authorization.java │ │ ├── BackInfo.hbm.xml │ │ ├── BackInfo.java │ │ ├── Book.hbm.xml │ │ ├── Book.java │ │ ├── BookType.hbm.xml │ │ ├── BookType.java │ │ ├── BorrowInfo.hbm.xml │ │ ├── BorrowInfo.java │ │ ├── ForfeitInfo.hbm.xml │ │ ├── ForfeitInfo.java │ │ ├── PageBean.java │ │ ├── Reader.hbm.xml │ │ ├── Reader.java │ │ ├── ReaderType.hbm.xml │ │ └── ReaderType.java │ │ ├── quartz │ │ └── CheckBorrowInfo.java │ │ ├── service │ │ ├── AdminService.java │ │ ├── AuthorizationService.java │ │ ├── BackService.java │ │ ├── BookService.java │ │ ├── BookTypeService.java │ │ ├── BorrowService.java │ │ ├── ForfeitService.java │ │ ├── ReaderService.java │ │ ├── ReaderTypeService.java │ │ └── impl │ │ │ ├── AdminServiceImpl.java │ │ │ ├── AuthorizationServiceImpl.java │ │ │ ├── BackServiceImpl.java │ │ │ ├── BookServiceImpl.java │ │ │ ├── BookTypeServiceImpl.java │ │ │ ├── BorrowServiceImpl.java │ │ │ ├── ForfeitServiceImpl.java │ │ │ ├── ReaderServiceImpl.java │ │ │ └── ReaderTypeServiceImpl.java │ │ ├── util │ │ ├── CheckUtils.java │ │ └── Md5Utils.java │ │ └── web │ │ └── filter │ │ ├── AdminFilter.java │ │ └── ReaderFilter.java └── test │ └── com │ └── cc │ └── library │ └── test │ ├── BaseSpring.java │ ├── TestAdmin.java │ ├── TestBack.java │ ├── TestBook.java │ ├── TestBookType.java │ ├── TestBorrow.java │ ├── TestBorrowInfo.java │ ├── TestReader.java │ └── TestSessionFactory.java ├── README.md ├── database └── 图书馆管理系统.sql └── img ├── 0.png ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 16.png ├── 17.png ├── 18.png ├── 19.png ├── 2.png ├── 20.png ├── 21.png ├── 22.png ├── 23.png ├── 24.png ├── 25.png ├── 26.png ├── 27.png ├── 28.png ├── 29.png ├── 3.png ├── 30.png ├── 31.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png /LibrarySystem/.mymetadata: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /LibrarySystem/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | org.eclipse.jdt.core.compiler.compliance=1.6 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.6 8 | -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminInfoAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminInfoAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminLoginAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminLoginAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AuthorizationAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AuthorizationAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AuthorizationAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AuthorizationAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BackManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BackManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BackManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BackManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookTypeManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookTypeManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookTypeManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookTypeManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowSearchAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowSearchAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/FileDownloadAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/FileDownloadAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/FileUploadAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/FileUploadAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderInfoAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderInfoAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderLoginAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderLoginAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderTypeManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderTypeManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/fileuploadmessage.properties: -------------------------------------------------------------------------------- 1 | struts.messages.error.uploading=\u4E0A\u4F20\u5931\u8D25\: {0} 2 | struts.messages.error.file.too.large=\u6587\u4EF6\u8FC7\u5927\: {0} "{1}" "{2}" {3} 3 | struts.messages.error.content.type.not.allowed=\u4E0A\u4F20\u6587\u4EF6\u7684\u7C7B\u578B\u4E0D\u5141\u8BB8\: {0} "{1}" "{2}" {3} 4 | struts.messages.error.file.extension.not.allowed=\u4E0A\u4F20\u6587\u4EF6\u7684\u6269\u5C55\u540D\u4E0D\u5141\u8BB8\: {0} "{1}" "{2}" {3} -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/AdminInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/AdminInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BackInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BackInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BookInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BookInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BookTypeInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BookTypeInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BorrowInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BorrowInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ForfeitInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ForfeitInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ReaderInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ReaderInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ReaderTypeInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ReaderTypeInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/AdminDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/AdminDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/AuthorizationDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/AuthorizationDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BackDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BackDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BookDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BookDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BookTypeDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BookTypeDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BorrowDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BorrowDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ForfeitDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ForfeitDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ReaderDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ReaderDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ReaderTypeDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ReaderTypeDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AdminDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AdminDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AdminDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AdminDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AuthorizationDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AuthorizationDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl$2.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookTypeDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookTypeDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookTypeDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookTypeDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BorrowDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BorrowDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BorrowDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BorrowDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ForfeitDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ForfeitDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ForfeitDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ForfeitDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderTypeDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderTypeDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Admin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Admin.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Admin.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Authorization.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Authorization.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BackInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BackInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BackInfo.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | borrowInfo 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Book.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Book.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BookType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BookType.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BookType.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BorrowInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BorrowInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ForfeitInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ForfeitInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ForfeitInfo.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | borrowInfo 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/PageBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/PageBean.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Reader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Reader.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ReaderType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ReaderType.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ReaderType.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/quartz/CheckBorrowInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/quartz/CheckBorrowInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/AdminService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/AdminService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/AuthorizationService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/AuthorizationService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BackService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BackService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BookService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BookService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BookTypeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BookTypeService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BorrowService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BorrowService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ForfeitService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ForfeitService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ReaderService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ReaderService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ReaderTypeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ReaderTypeService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/AdminServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/AdminServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/AuthorizationServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/AuthorizationServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BackServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BackServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BookServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BookServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BookTypeServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BookTypeServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BorrowServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BorrowServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ForfeitServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ForfeitServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ReaderServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ReaderServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ReaderTypeServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ReaderTypeServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/BaseSpring.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/BaseSpring.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestAdmin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestAdmin.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBack.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBook.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBook.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBookType$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBookType$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBookType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBookType.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBorrow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBorrow.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBorrowInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBorrowInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestReader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestReader.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestSessionFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestSessionFactory.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/util/CheckUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/util/CheckUtils.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/util/Md5Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/util/Md5Utils.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/web/filter/AdminFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/web/filter/AdminFilter.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/web/filter/ReaderFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/web/filter/ReaderFilter.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/hibernate/hibernate.cfg.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | com.mysql.jdbc.Driver 9 | 10 | 11 | jdbc:mysql://localhost:3306/LibrarySystem 12 | 13 | 16 | root 17 | 20 | 123 21 | 24 | true 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-admin-info.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-admin-login.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-admin-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-book.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-borrow-search.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-borrow.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-download.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-forfeit.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-reader-info.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-reader-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-upload.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-admin-info.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-admin-login.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | adminLogin.jsp 9 | 10 | 11 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-admin-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | /WEB-INF/admin/adminManage.jsp 27 | /error/nopass.jsp 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-authorization.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-back-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | /WEB-INF/admin/backManage.jsp 27 | /error/nopass.jsp 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-book-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | /WEB-INF/admin/bookManage.jsp 27 | /error/nopass.jsp 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-book.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | /WEB-INF/reader/book.jsp 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-bookType-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | /WEB-INF/admin/bookTypeManage.jsp 26 | /error/nopass.jsp 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-borrow-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | /WEB-INF/admin/borrowManage.jsp 26 | /error/nopass.jsp 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-borrow-search.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | /WEB-INF/admin/borrowSearch.jsp 27 | /error/nopass.jsp 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-borrow.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | /WEB-INF/reader/borrow.jsp 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-download.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | application/vnd.ms-excel 10 | attachment;fileName="${fileName}" 11 | downloadFile 12 | 1024 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-forfeit-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | /WEB-INF/admin/forfeitManage.jsp 27 | /error/nopass.jsp 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-forfeit.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | /WEB-INF/reader/forfeit.jsp 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-reader-info.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-reader-login.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | reader.jsp 9 | 10 | 11 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-reader-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | /WEB-INF/admin/readerManage.jsp 27 | /error/nopass.jsp 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-readerType-manage.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | /WEB-INF/admin/readerTypeManage.jsp 28 | /error/nopass.jsp 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-upload.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | /WEB-INF/error.jsp 9 | 10 | 11 | 16 | 21 | 20971520 22 | 23 | application/vnd.ms-excel 24 | 25 | .xls 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/error.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="utf-8" contentType="text/html; charset=utf-8"%> 2 | <%@ taglib uri="/struts-tags" prefix="s"%> 3 | 4 | 5 | 失败 6 | 7 | 8 | 失败!!!!
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/JXL/jxl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/JXL/jxl.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/db/mysql-connector-java-5.1.10-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/db/mysql-connector-java-5.1.10-bin.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/antlr-2.7.6.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/commons-collections-3.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate-annotations.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate-commons-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate-commons-annotations.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate3.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/javassist-3.9.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/javassist-3.9.0.GA.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/jta-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/jta-1.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/slf4j-api-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/slf4j-api-1.5.8.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/slf4j-log4j12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/slf4j-log4j12.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/commons-beanutils-1.8.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/json/commons-beanutils-1.8.0.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/commons-collections-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/json/commons-collections-3.2.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/commons-lang-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/json/commons-lang-2.5.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/json/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/ezmorph-1.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/json/ezmorph-1.0.6.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/json-lib-2.4-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/json/json-lib-2.4-jdk15.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/junit/junit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/junit/junit.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/quartz1.7.3/quartz-1.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/quartz1.7.3/quartz-1.7.3.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/aspectjrt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/aspectjrt.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/aspectjweaver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/aspectjweaver.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/c3p0-0.9.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/c3p0-0.9.1.2.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/cglib-nodep-2.1_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/cglib-nodep-2.1_3.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/common-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/common-annotations.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/commons-lang.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/commons-lang.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/commons-logging.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/commons-logging.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/log4j-1.2.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/log4j-1.2.15.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/spring.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/spring.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-io-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-io-1.3.2.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-logging.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-logging.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/freemarker-2.3.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/struts2/freemarker-2.3.15.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/ognl-2.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/struts2/ognl-2.7.3.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/struts2-core-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/struts2/struts2-core-2.1.8.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/struts2-spring-plugin-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/struts2/struts2-spring-plugin-2.1.8.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/xwork-core-2.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/WEB-INF/lib/struts2/xwork-core-2.1.6.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/download/book.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/download/book.xls -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/download/reader.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/download/reader.xls -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/img/404.png -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/404view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/img/404view.png -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/img/500.png -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/500view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/img/500view.jpg -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/nopass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/6026195f1f153d5b5f7a0f49e90fa5df709c27ea/LibrarySystem/WebRoot/img/nopass.png -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | <% 16 | response.sendRedirect("reader.jsp"); 17 | %> 18 | 19 | 20 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/ajax_upload.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | //解决file的change事件只能执行一次的问题 3 | $(document).on('change','#upload',function(){ 4 | ajaxFileUpload(); 5 | }); 6 | }); 7 | //上传图片的方法, 8 | function ajaxFileUpload(){ 9 | //获得basePath 10 | basePath=$('#basePath').val(); 11 | //调用ajaxfileupload.js中的方法 12 | $.ajaxFileUpload({ 13 | url:'admin/fileUploadAction_fileUpload.action',//上传要提交到的action 14 | secureuri:false,//是否用安全提交,默认为false 15 | fileElementId:'upload',//file选择文件的框的id 16 | dataType:'json',//数据返回格式,如果用json,需要修改ajaxfileupload.js中的内容 eval("data = " + data ); -->data = jQuery.parseJSON(jQuery(data).text()); 17 | success: function (data){ 18 | if(data.state=="success"){ 19 | $("#excel").val(data.path); 20 | }else{ 21 | showInfo("上传的格式有误!!"); 22 | } 23 | } 24 | }); 25 | } 26 | 27 | 28 | 29 | function showInfo(msg) { 30 | $("#div_info").text(msg); 31 | $("#modal_info").modal('show'); 32 | } 33 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/backBook.js: -------------------------------------------------------------------------------- 1 | 2 | $(function () { 3 | 4 | 5 | 6 | $('#modal_info').on('hide.bs.modal',function() {//提示模糊框隐藏时候触发 7 | location.reload(); //刷新当前页面 8 | }); 9 | 10 | 11 | 12 | }); 13 | 14 | 15 | function backBook(id){ 16 | var postdata = "borrowId="+id; 17 | ajax( 18 | { 19 | method:'POST', 20 | url:'admin/backManageAction_backBook.action', 21 | params: postdata, 22 | callback:function(data) { 23 | if (data == 1) { 24 | showInfo("还书成功"); 25 | 26 | }else if(data == -1){ 27 | showInfo("该书已经还了"); 28 | }else if(data == 2){ 29 | showInfo("还书成功,请缴纳逾期罚金"); 30 | }else{ 31 | showInfo("还书失败"); 32 | } 33 | 34 | } 35 | } 36 | 37 | ); 38 | 39 | 40 | 41 | } 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | function showInfo(msg) { 50 | $("#div_info").text(msg); 51 | $("#modal_info").modal('show'); 52 | } 53 | 54 | 55 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/bootstrap-dropdown.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Project: Twitter Bootstrap Hover Dropdown 3 | * Author: Cameron Spear 4 | * Contributors: Mattia Larentis 5 | * 6 | * Dependencies: Twitter Bootstrap's Dropdown plugin, jQuery 7 | * 8 | * A simple plugin to enable twitter bootstrap dropdowns to active on hover and provide a nice user experience. 9 | * 10 | * License: MIT 11 | * 12 | * http://cameronspear.com/blog/twitter-bootstrap-dropdown-on-hover-plugin/ 13 | */(function(e,t,n){var r=e();e.fn.dropdownHover=function(n){r=r.add(this.parent());return this.each(function(){var i=e(this),s=i.parent(),o={delay:500,instantlyCloseOthers:!0},u={delay:e(this).data("delay"),instantlyCloseOthers:e(this).data("close-others")},a=e.extend(!0,{},o,n,u),f;s.hover(function(e){if(!s.hasClass("open")&&!i.is(e.target))return!0;a.instantlyCloseOthers===!0&&r.removeClass("open");t.clearTimeout(f);s.addClass("open")},function(){f=t.setTimeout(function(){s.removeClass("open")},a.delay)});i.hover(function(){a.instantlyCloseOthers===!0&&r.removeClass("open");t.clearTimeout(f);s.addClass("open")});s.find(".dropdown-submenu").each(function(){var n=e(this),r;n.hover(function(){t.clearTimeout(r);n.children(".dropdown-menu").show();n.siblings().children(".dropdown-menu").hide()},function(){var e=n.children(".dropdown-menu");r=t.setTimeout(function(){e.hide()},a.delay)})})})};e(document).ready(function(){e('[data-hover="dropdown"]').dropdownHover()})})(jQuery,this); -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/borrowBook.js: -------------------------------------------------------------------------------- 1 | 2 | $(function () { 3 | 4 | 5 | $('#btn_borrow').click(function () { 6 | 7 | var postdata = "paperNO="+$.trim($("#borrowReaderPaperNO").val())+"&ISBN="+$.trim($("#borrowBookISBN").val())+"&pwd="+ $.trim($("#pwd").val()); 8 | ajax( 9 | { 10 | method:'POST', 11 | url:'admin/borrowManageAction_borrowBook.action', 12 | params: postdata, 13 | callback:function(data) { 14 | if (data==1) { 15 | showInfo("借阅成功"); 16 | 17 | }else if (data==-1) { 18 | showInfo("密码错误"); 19 | }else if(data==-2){ 20 | showInfo("借阅数量已达上限"); 21 | 22 | }else if(data==-3){ 23 | showInfo("请先缴纳未缴纳的罚金"); 24 | }else if(data==-4){ 25 | showInfo("该图书为馆内最后一本,无法借阅"); 26 | }else if(data==2){ 27 | showInfo("读者证件号有误,请重试"); 28 | }else if(data==3){ 29 | showInfo("图书ISBN号码有误,请重试"); 30 | }else{ 31 | showInfo("借阅失败"); 32 | } 33 | } 34 | } 35 | 36 | ); 37 | 38 | 39 | }); 40 | 41 | $('#modal_info').on('hide.bs.modal',function() {//提示模糊框隐藏时候触发 42 | 43 | location.reload(); //刷新当前页面 44 | }); 45 | 46 | 47 | 48 | }); 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | function showInfo(msg) { 60 | $("#div_info").text(msg); 61 | $("#modal_info").modal('show'); 62 | } 63 | 64 | 65 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/deleteAdmin.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function deleteAdmin(id){ 5 | ajax( 6 | { 7 | method:'POST', 8 | url:'admin/adminManageAction_deleteAdmin.action', 9 | params: "id=" + id, 10 | callback:function(data) { 11 | if (data == 1) { 12 | showInfo("删除成功"); 13 | } 14 | else { 15 | showInfo("删除失败"); 16 | } 17 | 18 | } 19 | } 20 | 21 | ); 22 | 23 | 24 | } 25 | 26 | $('#modal_info').on('hide.bs.modal',function() {//提示模糊框隐藏时候触发 27 | location.reload(); //刷新当前页面 28 | }); 29 | 30 | 31 | 32 | function showInfo(msg) { 33 | $("#div_info").text(msg); 34 | $("#modal_info").modal('show'); 35 | } 36 | 37 | 38 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/deleteBook.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function deleteBook(id){ 5 | ajax( 6 | { 7 | method:'POST', 8 | url:'admin/bookManageAction_deleteBook.action', 9 | params: "bookId=" + id, 10 | callback:function(data) { 11 | if (data == 1) { 12 | showInfo("删除成功"); 13 | }else if(data == -1){ 14 | showInfo("该书有未还书记录,不能删除"); 15 | }else if(data==-2){ 16 | showInfo("该书有未缴纳的罚款,不能删除"); 17 | }else{ 18 | showInfo("删除失败"); 19 | } 20 | 21 | } 22 | } 23 | 24 | ); 25 | 26 | 27 | } 28 | 29 | $('#modal_info').on('hide.bs.modal',function() {//提示模糊框隐藏时候触发 30 | location.reload(); //刷新当前页面 31 | }); 32 | 33 | 34 | 35 | function showInfo(msg) { 36 | $("#div_info").text(msg); 37 | $("#modal_info").modal('show'); 38 | } 39 | 40 | 41 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/deleteBookType.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function deleteBookType(id){ 5 | ajax( 6 | { 7 | method:'POST', 8 | url:'admin/bookTypeManageAction_deleteBookType.action', 9 | params: "id=" + id, 10 | callback:function(data) { 11 | if (data == 1) { 12 | showInfo("删除成功"); 13 | } 14 | else { 15 | showInfo("删除失败"); 16 | } 17 | 18 | } 19 | } 20 | 21 | ); 22 | 23 | 24 | } 25 | 26 | $('#modal_info').on('hide.bs.modal',function() {//提示模糊框隐藏时候触发 27 | location.reload(); //刷新当前页面 28 | }); 29 | 30 | 31 | 32 | function showInfo(msg) { 33 | $("#div_info").text(msg); 34 | $("#modal_info").modal('show'); 35 | } 36 | 37 | 38 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/deleteReader.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function deleteReader(id){ 5 | ajax( 6 | { 7 | method:'POST', 8 | url:'admin/readerManageAction_deleteReader.action', 9 | params: "readerId=" + id, 10 | callback:function(data) { 11 | if (data == 1) { 12 | showInfo("删除成功"); 13 | }else if(data == -1){ 14 | showInfo("该读者有未还书记录,不能删除"); 15 | }else if(data==-2){ 16 | showInfo("该读者有未缴纳的罚款,不能删除"); 17 | }else{ 18 | showInfo("删除失败"); 19 | } 20 | 21 | } 22 | } 23 | 24 | ); 25 | 26 | 27 | } 28 | 29 | $('#modal_info').on('hide.bs.modal',function() {//提示模糊框隐藏时候触发 30 | location.reload(); //刷新当前页面 31 | }); 32 | 33 | 34 | 35 | function showInfo(msg) { 36 | $("#div_info").text(msg); 37 | $("#modal_info").modal('show'); 38 | } 39 | 40 | 41 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/exportBook.js: -------------------------------------------------------------------------------- 1 | function exportBook(){ 2 | //获得basePath 3 | basePath=$('#basePath').val(); 4 | ajax( 5 | { 6 | method:'GET', 7 | url:'admin/bookManageAction_exportBook.action', 8 | callback:function(data) { 9 | showInfo("数据已导出:点击下载"); 10 | } 11 | } 12 | 13 | ); 14 | 15 | } 16 | 17 | 18 | 19 | 20 | function showInfo(msg) { 21 | $("#div_info").html(msg); 22 | $("#modal_info").modal('show'); 23 | } 24 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/exportReader.js: -------------------------------------------------------------------------------- 1 | function exportReader(){ 2 | //获得basePath 3 | basePath=$('#basePath').val(); 4 | ajax( 5 | { 6 | method:'GET', 7 | url:'admin/readerManageAction_exportReader.action', 8 | callback:function(data) { 9 | showInfo("数据已导出:点击下载"); 10 | } 11 | } 12 | 13 | ); 14 | 15 | } 16 | 17 | 18 | 19 | 20 | function showInfo(msg) { 21 | $("#div_info").html(msg); 22 | $("#modal_info").modal('show'); 23 | } 24 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getAllBookTypes.js: -------------------------------------------------------------------------------- 1 | window.onload = new function(){ 2 | ajax( 3 | { 4 | url:"admin/bookManageAction_getAllBookTypes.action", 5 | type:"json", 6 | callback:function(data) { 7 | // 循环遍历每个图书分类,每个名称生成一个option对象,添加到中 8 | for(var index in data) { 9 | var op = document.createElement("option");//创建一个指名名称元素 10 | op.value = data[index].readerTypeId;//设置op的实际值为当前的读者分类编号 11 | var textNode = document.createTextNode(data[index].readerTypeName);//创建文本节点 12 | op.appendChild(textNode);//把文本子节点添加到op元素中,指定其显示值 13 | 14 | document.getElementById("readerType").appendChild(op); 15 | } 16 | } 17 | } 18 | ); 19 | }; -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getBookInfo.js: -------------------------------------------------------------------------------- 1 | 2 | $(function () { 3 | 4 | 5 | 6 | $('#modal_info').on('hide.bs.modal',function() {//提示模糊框隐藏时候触发 7 | location.reload(); //刷新当前页面 8 | }); 9 | 10 | 11 | 12 | }); 13 | 14 | 15 | 16 | function getBookInfo(id){ 17 | 18 | ajax( 19 | { 20 | method:'POST', 21 | url:'admin/bookManageAction_getBook.action', 22 | params: "bookId=" + id, 23 | type:"json", 24 | callback:function(data) { 25 | $("#findISBN").val(data.ISBN); 26 | $("#findBookName").val(data.bookName); 27 | $("#findBookType").val(data.bookType.typeName); 28 | $("#findAutho").val(data.autho); 29 | $("#findPress").val(data.press); 30 | $("#findPrice").val(data.price); 31 | $("#findDescription").val(data.description); 32 | $("#findNum").val(data.num); 33 | $("#findAdmin").val(data.admin.name); 34 | $("#findCurrentNum").val(data.currentNum); 35 | } 36 | } 37 | 38 | 39 | 40 | ); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | } 49 | 50 | 51 | 52 | function showInfo(msg) { 53 | $("#div_info").text(msg); 54 | $("#modal_info").modal('show'); 55 | } 56 | 57 | 58 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getBookTypes.js: -------------------------------------------------------------------------------- 1 | window.onload = new function(){ 2 | ajax( 3 | { 4 | url:"bookAction_getAllBookTypes.action", 5 | type:"json", 6 | callback:function(data) { 7 | // 循环遍历每个图书分类,每个名称生成一个option对象,添加到