├── web ├── books │ ├── js │ │ ├── index.js │ │ ├── reader.js │ │ ├── exportBook.js │ │ ├── exportReader.js │ │ ├── npm.js │ │ ├── deleteAdmin.js │ │ ├── deleteBookType.js │ │ ├── getBookTypes.js │ │ ├── getReader.js │ │ ├── getAllBookTypes.js │ │ ├── getAllReaderTypes.js │ │ ├── deleteBook.js │ │ ├── deleteReader.js │ │ ├── pay.js │ │ ├── backBook.js │ │ ├── ajax_upload.js │ │ ├── renewBook.js │ │ ├── getReaderBookInfo.js │ │ ├── getBookInfo.js │ │ ├── bootstrap-dropdown.min.js │ │ ├── getForfeitInfo.js │ │ ├── getReaderForfeitInfo.js │ │ ├── borrowBook.js │ │ ├── getBorrowInfo.js │ │ ├── getBackInfo.js │ │ ├── getReaderBackInfo.js │ │ ├── addBookNum.js │ │ ├── addBookType.js │ │ ├── batchAddBook.js │ │ ├── batchAddReader.js │ │ ├── login.js │ │ ├── updateBookType.js │ │ ├── adminLogin.js │ │ ├── updateAuthorization.js │ │ ├── readerUpdateInfo.js │ │ ├── adminUpdateInfo.js │ │ ├── addAdmin.js │ │ ├── readerUpdatePwd.js │ │ ├── adminUpdatePwd.js │ │ ├── updateAdmin.js │ │ ├── addReaderType.js │ │ ├── addReader.js │ │ ├── updateReaderType.js │ │ ├── addBook.js │ │ ├── updateBook.js │ │ ├── updateReader.js │ │ └── dataTables.bootstrap.js │ ├── img │ │ ├── ghz.jpg │ │ ├── head_bg.jpg │ │ ├── login_res_bg.jpg │ │ ├── title-yellow.png │ │ └── title-yellow1.png │ ├── login.jsp │ ├── css │ │ ├── index.css │ │ └── dataTables.bootstrap.css │ └── register.jsp ├── WEB-INF │ ├── lib │ │ ├── jstl.jar │ │ ├── standard.jar │ │ ├── servlet-api.jar │ │ └── mysql-connector-java-5.1.7-bin.jar │ └── web.xml ├── index.jsp ├── static │ ├── js │ │ └── theme.js │ └── css │ │ ├── fullcalendar.print.css │ │ └── admin.css └── login.jsp ├── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png └── 8.png ├── src └── com │ └── cya │ ├── pojo │ ├── Type.java │ ├── Notice.java │ ├── Book.java │ ├── Admin.java │ └── History.java │ ├── controller │ ├── deleteNoticeServlet.java │ ├── ExitServlet.java │ ├── deleteServlet.java │ ├── deleteTypeServlet.java │ ├── deleteUserServlet.java │ ├── AddBookTypeServlet.java │ ├── updateBookTypeServlet.java │ ├── updateNoticeServlet.java │ ├── AddNoticeServlet.java │ ├── AddBookServlet.java │ ├── RegisterServlet.java │ ├── updateBookServlet.java │ ├── AddUserServlet.java │ ├── updateUserServlet.java │ ├── selectServlet.java │ ├── LoginServlet.java │ ├── borrowServlet.java │ └── AdminServlet.java │ ├── util │ └── DBUtil.java │ └── dao │ ├── NoticeDao.java │ └── TypeDao.java ├── .gitignore └── README.md /web/books/js/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/screenshot/7.png -------------------------------------------------------------------------------- /screenshot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/screenshot/8.png -------------------------------------------------------------------------------- /web/books/img/ghz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/web/books/img/ghz.jpg -------------------------------------------------------------------------------- /web/WEB-INF/lib/jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/web/WEB-INF/lib/jstl.jar -------------------------------------------------------------------------------- /web/books/img/head_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/web/books/img/head_bg.jpg -------------------------------------------------------------------------------- /web/WEB-INF/lib/standard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/web/WEB-INF/lib/standard.jar -------------------------------------------------------------------------------- /web/WEB-INF/lib/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/web/WEB-INF/lib/servlet-api.jar -------------------------------------------------------------------------------- /web/books/img/login_res_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/web/books/img/login_res_bg.jpg -------------------------------------------------------------------------------- /web/books/img/title-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/web/books/img/title-yellow.png -------------------------------------------------------------------------------- /web/books/img/title-yellow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/web/books/img/title-yellow1.png -------------------------------------------------------------------------------- /web/books/js/reader.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | $('#btn_login').click(function () { 4 | window.location.href = "login.jsp"; 5 | }); 6 | 7 | }); 8 | 9 | -------------------------------------------------------------------------------- /web/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No66LibraryManagementSystem2/HEAD/web/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar -------------------------------------------------------------------------------- /web/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: Administrator 4 | Date: 2021/4/27 0027 5 | Time: 下午 8:39 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 |
11 |