├── .idea ├── .gitignore ├── .name ├── artifacts │ ├── library_war.xml │ └── library_war_exploded.xml ├── compiler.xml ├── encodings.xml ├── jarRepositories.xml ├── libraries │ ├── Maven__aopalliance_aopalliance_1_0.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_annotations_2_9_10.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_core_2_9_10.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_9_10_3.xml │ ├── Maven__com_google_protobuf_protobuf_java_3_6_1.xml │ ├── Maven__commons_dbcp_commons_dbcp_1_4.xml │ ├── Maven__commons_logging_commons_logging_1_2.xml │ ├── Maven__commons_pool_commons_pool_1_5_4.xml │ ├── Maven__javax_servlet_javax_servlet_api_3_1_0.xml │ ├── Maven__javax_servlet_jstl_1_2.xml │ ├── Maven__mysql_mysql_connector_java_8_0_16.xml │ ├── Maven__org_mybatis_mybatis_3_4_1.xml │ ├── Maven__org_mybatis_mybatis_spring_1_3_0.xml │ ├── Maven__org_springframework_spring_aop_4_2_2_RELEASE.xml │ ├── Maven__org_springframework_spring_beans_4_2_2_RELEASE.xml │ ├── Maven__org_springframework_spring_context_4_2_2_RELEASE.xml │ ├── Maven__org_springframework_spring_core_4_2_2_RELEASE.xml │ ├── Maven__org_springframework_spring_expression_4_2_2_RELEASE.xml │ ├── Maven__org_springframework_spring_jdbc_4_2_2_RELEASE.xml │ ├── Maven__org_springframework_spring_tx_4_2_2_RELEASE.xml │ ├── Maven__org_springframework_spring_web_4_2_2_RELEASE.xml │ ├── Maven__org_springframework_spring_webmvc_4_2_2_RELEASE.xml │ └── lib.xml ├── misc.xml └── modules.xml ├── README.md ├── library.iml ├── pom.xml ├── preview ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── src └── main │ ├── java │ └── com │ │ └── library │ │ ├── bean │ │ ├── Admin.java │ │ ├── Book.java │ │ ├── Lend.java │ │ ├── ReaderCard.java │ │ └── ReaderInfo.java │ │ ├── controller │ │ ├── BookController.java │ │ ├── LendController.java │ │ ├── LoginController.java │ │ ├── ReaderController.java │ │ └── WebConfig.java │ │ ├── dao │ │ ├── AdminDao.java │ │ ├── BookDao.java │ │ ├── LendDao.java │ │ ├── ReaderCardDao.java │ │ └── ReaderInfoDao.java │ │ ├── filter │ │ └── CharactorFilter.java │ │ └── service │ │ ├── BookService.java │ │ ├── LendService.java │ │ ├── LoginService.java │ │ ├── ReaderCardService.java │ │ └── ReaderInfoService.java │ ├── resources │ ├── MyBatis │ │ ├── admin.xml │ │ ├── book.xml │ │ ├── lend.xml │ │ ├── readerCard.xml │ │ └── readerInfo.xml │ ├── book-context.xml │ └── db.properties │ └── webapp │ ├── META-INF │ └── MANIFEST.MF │ ├── WEB-INF │ ├── book-servlet.xml │ ├── classes │ │ ├── MyBatis │ │ │ ├── admin.xml │ │ │ ├── book.xml │ │ │ ├── lend.xml │ │ │ ├── readerCard.xml │ │ │ └── readerInfo.xml │ │ ├── book-context.xml │ │ ├── com │ │ │ └── library │ │ │ │ ├── bean │ │ │ │ ├── Admin.class │ │ │ │ ├── Book.class │ │ │ │ ├── Lend.class │ │ │ │ ├── ReaderCard.class │ │ │ │ └── ReaderInfo.class │ │ │ │ ├── controller │ │ │ │ ├── BookController.class │ │ │ │ ├── LendController.class │ │ │ │ ├── LoginController.class │ │ │ │ ├── ReaderController.class │ │ │ │ └── WebConfig.class │ │ │ │ ├── dao │ │ │ │ ├── AdminDao.class │ │ │ │ ├── BookDao.class │ │ │ │ ├── LendDao.class │ │ │ │ ├── ReaderCardDao.class │ │ │ │ └── ReaderInfoDao.class │ │ │ │ ├── filter │ │ │ │ └── CharactorFilter.class │ │ │ │ └── service │ │ │ │ ├── BookService.class │ │ │ │ ├── LendService.class │ │ │ │ ├── LoginService.class │ │ │ │ ├── ReaderCardService.class │ │ │ │ └── ReaderInfoService.class │ │ └── db.properties │ ├── jsp │ │ ├── 404.jsp │ │ ├── admin_book_add.jsp │ │ ├── admin_book_detail.jsp │ │ ├── admin_book_edit.jsp │ │ ├── admin_books.jsp │ │ ├── admin_header.jsp │ │ ├── admin_lend_list.jsp │ │ ├── admin_main.jsp │ │ ├── admin_reader_add.jsp │ │ ├── admin_reader_edit.jsp │ │ ├── admin_readers.jsp │ │ ├── admin_repasswd.jsp │ │ ├── index.jsp │ │ ├── reader_book_detail.jsp │ │ ├── reader_books.jsp │ │ ├── reader_header.jsp │ │ ├── reader_info.jsp │ │ ├── reader_info_edit.jsp │ │ ├── reader_lend_list.jsp │ │ ├── reader_main.jsp │ │ └── reader_repasswd.jsp │ ├── lib │ │ ├── aopalliance-1.0.jar │ │ ├── commons-dbcp-1.4.jar │ │ ├── commons-logging-1.2.jar │ │ ├── commons-pool-1.5.4.jar │ │ ├── jackson-annotations-2.9.10.jar │ │ ├── jackson-core-2.9.10.jar │ │ ├── jackson-databind-2.9.10.3.jar │ │ ├── javax.servlet-api-3.1.0.jar │ │ ├── jstl-1.2.jar │ │ ├── mybatis-3.4.1.jar │ │ ├── mybatis-spring-1.3.0.jar │ │ ├── mysql-connector-java-8.0.16.jar │ │ ├── protobuf-java-3.6.1.jar │ │ ├── spring-aop-4.2.2.RELEASE.jar │ │ ├── spring-beans-4.2.2.RELEASE.jar │ │ ├── spring-context-4.2.2.RELEASE.jar │ │ ├── spring-core-4.2.2.RELEASE.jar │ │ ├── spring-expression-4.2.2.RELEASE.jar │ │ ├── spring-jdbc-4.2.2.RELEASE.jar │ │ ├── spring-tx-4.2.2.RELEASE.jar │ │ ├── spring-web-4.2.2.RELEASE.jar │ │ └── spring-webmvc-4.2.2.RELEASE.jar │ └── web.xml │ └── static │ ├── css │ └── bootstrap.min.css │ ├── img │ ├── book1.jpg │ ├── book2(1).jpg │ ├── book2.jpg │ ├── book3.jpg │ ├── classroom.jpg │ ├── library.jpg │ ├── library1.jpg │ ├── library2.jpg │ ├── lizhi.jpg │ ├── school.jpg │ ├── scut.jpg │ ├── sky.jpg │ ├── timg.jpg │ ├── u1.jpg │ ├── u2.jpg │ ├── u5.jpeg │ └── wolf.jpg │ └── js │ ├── bootstrap.min.js │ ├── jquery-3.2.1.js │ └── js.cookie.js └── target ├── classes ├── MyBatis │ ├── admin.xml │ ├── book.xml │ ├── lend.xml │ ├── readerCard.xml │ └── readerInfo.xml ├── book-context.xml ├── com │ └── library │ │ ├── bean │ │ ├── Admin.class │ │ ├── Book.class │ │ ├── Lend.class │ │ ├── ReaderCard.class │ │ └── ReaderInfo.class │ │ ├── controller │ │ ├── BookController.class │ │ ├── LendController.class │ │ ├── LoginController.class │ │ ├── ReaderController.class │ │ └── WebConfig.class │ │ ├── dao │ │ ├── AdminDao.class │ │ ├── BookDao.class │ │ ├── LendDao.class │ │ ├── ReaderCardDao.class │ │ └── ReaderInfoDao.class │ │ ├── filter │ │ └── CharactorFilter.class │ │ └── service │ │ ├── BookService.class │ │ ├── LendService.class │ │ ├── LoginService.class │ │ ├── ReaderCardService.class │ │ └── ReaderInfoService.class └── db.properties └── library.war /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | library -------------------------------------------------------------------------------- /.idea/artifacts/library_war.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/artifacts/library_war.xml -------------------------------------------------------------------------------- /.idea/artifacts/library_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/artifacts/library_war_exploded.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__aopalliance_aopalliance_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__aopalliance_aopalliance_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_9_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_9_10.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_9_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_9_10.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_9_10_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_9_10_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_google_protobuf_protobuf_java_3_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__com_google_protobuf_protobuf_java_3_6_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_dbcp_commons_dbcp_1_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__commons_dbcp_commons_dbcp_1_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_logging_commons_logging_1_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__commons_logging_commons_logging_1_2.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_pool_commons_pool_1_5_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__commons_pool_commons_pool_1_5_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__javax_servlet_javax_servlet_api_3_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__javax_servlet_javax_servlet_api_3_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__javax_servlet_jstl_1_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__javax_servlet_jstl_1_2.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__mysql_mysql_connector_java_8_0_16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__mysql_mysql_connector_java_8_0_16.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mybatis_mybatis_3_4_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_mybatis_mybatis_3_4_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mybatis_mybatis_spring_1_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_mybatis_mybatis_spring_1_3_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_aop_4_2_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_springframework_spring_aop_4_2_2_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_beans_4_2_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_springframework_spring_beans_4_2_2_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_context_4_2_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_springframework_spring_context_4_2_2_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_core_4_2_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_springframework_spring_core_4_2_2_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_expression_4_2_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_springframework_spring_expression_4_2_2_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_jdbc_4_2_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_springframework_spring_jdbc_4_2_2_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_tx_4_2_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_springframework_spring_tx_4_2_2_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_web_4_2_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_springframework_spring_web_4_2_2_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_webmvc_4_2_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/Maven__org_springframework_spring_webmvc_4_2_2_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/libraries/lib.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/README.md -------------------------------------------------------------------------------- /library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/library.iml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/pom.xml -------------------------------------------------------------------------------- /preview/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/1.png -------------------------------------------------------------------------------- /preview/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/10.png -------------------------------------------------------------------------------- /preview/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/11.png -------------------------------------------------------------------------------- /preview/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/12.png -------------------------------------------------------------------------------- /preview/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/2.png -------------------------------------------------------------------------------- /preview/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/3.png -------------------------------------------------------------------------------- /preview/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/4.png -------------------------------------------------------------------------------- /preview/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/5.png -------------------------------------------------------------------------------- /preview/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/6.png -------------------------------------------------------------------------------- /preview/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/7.png -------------------------------------------------------------------------------- /preview/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/8.png -------------------------------------------------------------------------------- /preview/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/preview/9.png -------------------------------------------------------------------------------- /src/main/java/com/library/bean/Admin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/bean/Admin.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/bean/Book.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/Lend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/bean/Lend.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/ReaderCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/bean/ReaderCard.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/ReaderInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/bean/ReaderInfo.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/BookController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/controller/BookController.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/LendController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/controller/LendController.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/LoginController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/controller/LoginController.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/ReaderController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/controller/ReaderController.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/WebConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/controller/WebConfig.java -------------------------------------------------------------------------------- /src/main/java/com/library/dao/AdminDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/dao/AdminDao.java -------------------------------------------------------------------------------- /src/main/java/com/library/dao/BookDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/dao/BookDao.java -------------------------------------------------------------------------------- /src/main/java/com/library/dao/LendDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/dao/LendDao.java -------------------------------------------------------------------------------- /src/main/java/com/library/dao/ReaderCardDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/dao/ReaderCardDao.java -------------------------------------------------------------------------------- /src/main/java/com/library/dao/ReaderInfoDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/dao/ReaderInfoDao.java -------------------------------------------------------------------------------- /src/main/java/com/library/filter/CharactorFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/filter/CharactorFilter.java -------------------------------------------------------------------------------- /src/main/java/com/library/service/BookService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/service/BookService.java -------------------------------------------------------------------------------- /src/main/java/com/library/service/LendService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/service/LendService.java -------------------------------------------------------------------------------- /src/main/java/com/library/service/LoginService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/service/LoginService.java -------------------------------------------------------------------------------- /src/main/java/com/library/service/ReaderCardService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/service/ReaderCardService.java -------------------------------------------------------------------------------- /src/main/java/com/library/service/ReaderInfoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/java/com/library/service/ReaderInfoService.java -------------------------------------------------------------------------------- /src/main/resources/MyBatis/admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/resources/MyBatis/admin.xml -------------------------------------------------------------------------------- /src/main/resources/MyBatis/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/resources/MyBatis/book.xml -------------------------------------------------------------------------------- /src/main/resources/MyBatis/lend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/resources/MyBatis/lend.xml -------------------------------------------------------------------------------- /src/main/resources/MyBatis/readerCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/resources/MyBatis/readerCard.xml -------------------------------------------------------------------------------- /src/main/resources/MyBatis/readerInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/resources/MyBatis/readerInfo.xml -------------------------------------------------------------------------------- /src/main/resources/book-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/resources/book-context.xml -------------------------------------------------------------------------------- /src/main/resources/db.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/resources/db.properties -------------------------------------------------------------------------------- /src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/book-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/book-servlet.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/MyBatis/admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/MyBatis/admin.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/MyBatis/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/MyBatis/book.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/MyBatis/lend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/MyBatis/lend.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/MyBatis/readerCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/MyBatis/readerCard.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/MyBatis/readerInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/MyBatis/readerInfo.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/book-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/book-context.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/bean/Admin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/bean/Admin.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/bean/Book.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/bean/Book.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/bean/Lend.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/bean/Lend.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/bean/ReaderCard.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/bean/ReaderCard.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/bean/ReaderInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/bean/ReaderInfo.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/controller/BookController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/controller/BookController.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/controller/LendController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/controller/LendController.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/controller/LoginController.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/controller/ReaderController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/controller/ReaderController.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/controller/WebConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/controller/WebConfig.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/dao/AdminDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/dao/AdminDao.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/dao/BookDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/dao/BookDao.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/dao/LendDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/dao/LendDao.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/dao/ReaderCardDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/dao/ReaderCardDao.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/dao/ReaderInfoDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/dao/ReaderInfoDao.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/filter/CharactorFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/filter/CharactorFilter.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/service/BookService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/service/BookService.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/service/LendService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/service/LendService.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/service/LoginService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/service/LoginService.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/service/ReaderCardService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/service/ReaderCardService.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/com/library/service/ReaderInfoService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/com/library/service/ReaderInfoService.class -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/classes/db.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/classes/db.properties -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/404.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/404.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_book_add.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_book_add.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_book_detail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_book_detail.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_book_edit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_book_edit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_books.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_books.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_header.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_lend_list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_lend_list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_main.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_main.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_reader_add.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_reader_add.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_reader_edit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_reader_edit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_readers.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_readers.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_repasswd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/admin_repasswd.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_book_detail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/reader_book_detail.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_books.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/reader_books.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/reader_header.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_info.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/reader_info.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_info_edit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/reader_info_edit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_lend_list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/reader_lend_list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_main.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/reader_main.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_repasswd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/jsp/reader_repasswd.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/commons-dbcp-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/commons-dbcp-1.4.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/commons-pool-1.5.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/commons-pool-1.5.4.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/jackson-annotations-2.9.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/jackson-annotations-2.9.10.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/jackson-core-2.9.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/jackson-core-2.9.10.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/jackson-databind-2.9.10.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/jackson-databind-2.9.10.3.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/javax.servlet-api-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/javax.servlet-api-3.1.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/mybatis-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/mybatis-3.4.1.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/mybatis-spring-1.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/mybatis-spring-1.3.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/mysql-connector-java-8.0.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/mysql-connector-java-8.0.16.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/protobuf-java-3.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/protobuf-java-3.6.1.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-aop-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/spring-aop-4.2.2.RELEASE.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-beans-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/spring-beans-4.2.2.RELEASE.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-context-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/spring-context-4.2.2.RELEASE.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-core-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/spring-core-4.2.2.RELEASE.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-expression-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/spring-expression-4.2.2.RELEASE.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-jdbc-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/spring-jdbc-4.2.2.RELEASE.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-tx-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/spring-tx-4.2.2.RELEASE.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-web-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/spring-web-4.2.2.RELEASE.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-webmvc-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/lib/spring-webmvc-4.2.2.RELEASE.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/img/book1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/book1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/book2(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/book2(1).jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/book2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/book2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/book3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/book3.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/classroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/classroom.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/library.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/library.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/library1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/library1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/library2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/library2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/lizhi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/lizhi.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/school.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/school.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/scut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/scut.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/sky.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/timg.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/u1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/u1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/u2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/u2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/u5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/u5.jpeg -------------------------------------------------------------------------------- /src/main/webapp/static/img/wolf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/img/wolf.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/js/jquery-3.2.1.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/js.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/src/main/webapp/static/js/js.cookie.js -------------------------------------------------------------------------------- /target/classes/MyBatis/admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/MyBatis/admin.xml -------------------------------------------------------------------------------- /target/classes/MyBatis/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/MyBatis/book.xml -------------------------------------------------------------------------------- /target/classes/MyBatis/lend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/MyBatis/lend.xml -------------------------------------------------------------------------------- /target/classes/MyBatis/readerCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/MyBatis/readerCard.xml -------------------------------------------------------------------------------- /target/classes/MyBatis/readerInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/MyBatis/readerInfo.xml -------------------------------------------------------------------------------- /target/classes/book-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/book-context.xml -------------------------------------------------------------------------------- /target/classes/com/library/bean/Admin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/bean/Admin.class -------------------------------------------------------------------------------- /target/classes/com/library/bean/Book.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/bean/Book.class -------------------------------------------------------------------------------- /target/classes/com/library/bean/Lend.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/bean/Lend.class -------------------------------------------------------------------------------- /target/classes/com/library/bean/ReaderCard.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/bean/ReaderCard.class -------------------------------------------------------------------------------- /target/classes/com/library/bean/ReaderInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/bean/ReaderInfo.class -------------------------------------------------------------------------------- /target/classes/com/library/controller/BookController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/controller/BookController.class -------------------------------------------------------------------------------- /target/classes/com/library/controller/LendController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/controller/LendController.class -------------------------------------------------------------------------------- /target/classes/com/library/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/controller/LoginController.class -------------------------------------------------------------------------------- /target/classes/com/library/controller/ReaderController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/controller/ReaderController.class -------------------------------------------------------------------------------- /target/classes/com/library/controller/WebConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/controller/WebConfig.class -------------------------------------------------------------------------------- /target/classes/com/library/dao/AdminDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/dao/AdminDao.class -------------------------------------------------------------------------------- /target/classes/com/library/dao/BookDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/dao/BookDao.class -------------------------------------------------------------------------------- /target/classes/com/library/dao/LendDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/dao/LendDao.class -------------------------------------------------------------------------------- /target/classes/com/library/dao/ReaderCardDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/dao/ReaderCardDao.class -------------------------------------------------------------------------------- /target/classes/com/library/dao/ReaderInfoDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/dao/ReaderInfoDao.class -------------------------------------------------------------------------------- /target/classes/com/library/filter/CharactorFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/filter/CharactorFilter.class -------------------------------------------------------------------------------- /target/classes/com/library/service/BookService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/service/BookService.class -------------------------------------------------------------------------------- /target/classes/com/library/service/LendService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/service/LendService.class -------------------------------------------------------------------------------- /target/classes/com/library/service/LoginService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/service/LoginService.class -------------------------------------------------------------------------------- /target/classes/com/library/service/ReaderCardService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/service/ReaderCardService.class -------------------------------------------------------------------------------- /target/classes/com/library/service/ReaderInfoService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/com/library/service/ReaderInfoService.class -------------------------------------------------------------------------------- /target/classes/db.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/classes/db.properties -------------------------------------------------------------------------------- /target/library.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreke666/ssmLibrary/HEAD/target/library.war --------------------------------------------------------------------------------