├── .classpath ├── .idea ├── .name ├── artifacts │ └── library_war_exploded.xml ├── compiler.xml ├── encodings.xml ├── libraries │ └── aopalliance_1_0.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.core.resources.prefs ├── 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 └── org.eclipse.wst.validation.prefs ├── README.md ├── image ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 2.png ├── 3.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── library.iml ├── limage ├── 1.png └── 2.png └── src └── main ├── java └── com │ └── library │ ├── bean │ ├── Admin.java │ ├── Book.java │ ├── Lend.java │ ├── LendDate.java │ ├── ReaderCard.java │ ├── ReaderInfo.java │ └── ReaderInfoDate.java │ └── controller │ ├── BookController.java │ ├── LendController.java │ ├── LoginController.java │ ├── ReaderController.java │ └── WebConfig.java ├── resources ├── MyBatis │ ├── admin.xml │ ├── book.xml │ ├── lend.xml │ ├── readerCard.xml │ └── readerInfo.xml ├── book-context.xml └── db.properties └── webapp ├── WEB-INF ├── book-servlet.xml ├── 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.0.jar │ ├── jackson-core-2.9.9.jar │ ├── jackson-databind-2.9.9.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-5.1.29.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 /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.classpath -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | library -------------------------------------------------------------------------------- /.idea/artifacts/library_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.idea/artifacts/library_war_exploded.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/aopalliance_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.idea/libraries/aopalliance_1_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/README.md -------------------------------------------------------------------------------- /image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/1.png -------------------------------------------------------------------------------- /image/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/10.png -------------------------------------------------------------------------------- /image/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/11.png -------------------------------------------------------------------------------- /image/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/12.png -------------------------------------------------------------------------------- /image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/2.png -------------------------------------------------------------------------------- /image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/3.png -------------------------------------------------------------------------------- /image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/5.png -------------------------------------------------------------------------------- /image/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/6.png -------------------------------------------------------------------------------- /image/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/7.png -------------------------------------------------------------------------------- /image/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/8.png -------------------------------------------------------------------------------- /image/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/image/9.png -------------------------------------------------------------------------------- /library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/library.iml -------------------------------------------------------------------------------- /limage/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/limage/1.png -------------------------------------------------------------------------------- /limage/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/limage/2.png -------------------------------------------------------------------------------- /src/main/java/com/library/bean/Admin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/bean/Admin.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/bean/Book.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/Lend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/bean/Lend.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/LendDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/bean/LendDate.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/ReaderCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/bean/ReaderCard.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/ReaderInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/bean/ReaderInfo.java -------------------------------------------------------------------------------- /src/main/java/com/library/bean/ReaderInfoDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/bean/ReaderInfoDate.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/BookController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/controller/BookController.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/LendController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/controller/LendController.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/LoginController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/controller/LoginController.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/ReaderController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/controller/ReaderController.java -------------------------------------------------------------------------------- /src/main/java/com/library/controller/WebConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/java/com/library/controller/WebConfig.java -------------------------------------------------------------------------------- /src/main/resources/MyBatis/admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/resources/MyBatis/admin.xml -------------------------------------------------------------------------------- /src/main/resources/MyBatis/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/resources/MyBatis/book.xml -------------------------------------------------------------------------------- /src/main/resources/MyBatis/lend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/resources/MyBatis/lend.xml -------------------------------------------------------------------------------- /src/main/resources/MyBatis/readerCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/resources/MyBatis/readerCard.xml -------------------------------------------------------------------------------- /src/main/resources/MyBatis/readerInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/resources/MyBatis/readerInfo.xml -------------------------------------------------------------------------------- /src/main/resources/book-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/resources/book-context.xml -------------------------------------------------------------------------------- /src/main/resources/db.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/resources/db.properties -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/book-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/book-servlet.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/404.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/404.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_book_add.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/admin_book_edit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_books.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/admin_books.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/admin_header.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_lend_list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/admin_lend_list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_main.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/admin_main.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_reader_add.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/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/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/admin_reader_edit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_readers.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/admin_readers.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/admin_repasswd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/admin_repasswd.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_book_detail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/reader_book_detail.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_books.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/reader_books.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/reader_header.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_info.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/reader_info.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_info_edit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/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/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/reader_lend_list.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_main.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/reader_main.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/reader_repasswd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/jsp/reader_repasswd.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/lib/commons-pool-1.5.4.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/jackson-annotations-2.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/lib/jackson-annotations-2.9.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/jackson-core-2.9.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/lib/jackson-core-2.9.9.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/jackson-databind-2.9.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/lib/jackson-databind-2.9.9.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/javax.servlet-api-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/lib/mybatis-spring-1.3.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/mysql-connector-java-5.1.29.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/lib/mysql-connector-java-5.1.29.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/spring-aop-4.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/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/nature924/No311library-management-system/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/img/book1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/book1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/book2(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/book2(1).jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/book2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/book2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/book3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/book3.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/classroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/classroom.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/library.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/library.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/library1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/library1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/library2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/library2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/lizhi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/lizhi.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/school.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/school.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/scut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/scut.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/sky.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/timg.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/u1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/u1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/u2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/u2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/img/u5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/u5.jpeg -------------------------------------------------------------------------------- /src/main/webapp/static/img/wolf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/img/wolf.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/js/jquery-3.2.1.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/js.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No311library-management-system/HEAD/src/main/webapp/static/js/js.cookie.js --------------------------------------------------------------------------------