├── .gitignore ├── README.md ├── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png ├── src ├── c3p0-config.xml └── com │ └── southwind │ ├── controller │ ├── AdminServlet.java │ ├── BookServlet.java │ ├── LoginServlet.java │ └── LogoutServlet.java │ ├── entity │ ├── Admin.java │ ├── Book.java │ ├── BookCase.java │ ├── Borrow.java │ └── Reader.java │ ├── filter │ ├── AdminFilter.java │ └── ReaderFilter.java │ ├── repository │ ├── AdminRepository.java │ ├── BookRepository.java │ ├── BorrowRepository.java │ ├── ReaderRepository.java │ └── impl │ │ ├── AdminRepositoryImpl.java │ │ ├── BookRepositoryImpl.java │ │ ├── BorrowRepositoryImpl.java │ │ └── ReaderRepositoryImpl.java │ ├── service │ ├── BookService.java │ ├── LoginService.java │ └── impl │ │ ├── BookServiceImpl.java │ │ └── LoginServiceImpl.java │ └── utils │ └── JDBCTools.java └── web ├── WEB-INF ├── lib │ ├── c3p0-0.9.1.2.jar │ ├── jstl.jar │ ├── mysql-connector-java-3.1.7-bin.jar │ └── standard.jar └── web.xml ├── admin.jsp ├── borrow.jsp ├── css ├── examine.css ├── footer.css ├── index.css ├── login.css ├── myBorrow.css ├── register.css ├── return.css ├── style.css └── top.css ├── footer.jsp ├── images ├── Thumbs.db ├── borrowBackRenew.gif ├── borrowBackRenew_back.gif ├── borrowBackRenew_r.gif ├── borrow_if.gif ├── copyright_t.gif ├── error.jpg ├── error_b.gif ├── item_out.gif ├── item_over.gif ├── login.jpg ├── main_booksort.gif ├── main_booksort_1.gif ├── main_booksort_2.gif ├── main_readersort_1.gif ├── more.GIF ├── navigation_bg.gif ├── navigation_bg_bottom.gif ├── reader_checkbg.jpg ├── search.gif ├── subBG.jpg └── top_bg.gif ├── index.jsp ├── js ├── index.js ├── jquery-3.3.1.min.js └── register.js ├── login.jsp ├── return.jsp └── top.jsp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/README.md -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /src/c3p0-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/c3p0-config.xml -------------------------------------------------------------------------------- /src/com/southwind/controller/AdminServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/controller/AdminServlet.java -------------------------------------------------------------------------------- /src/com/southwind/controller/BookServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/controller/BookServlet.java -------------------------------------------------------------------------------- /src/com/southwind/controller/LoginServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/controller/LoginServlet.java -------------------------------------------------------------------------------- /src/com/southwind/controller/LogoutServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/controller/LogoutServlet.java -------------------------------------------------------------------------------- /src/com/southwind/entity/Admin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/entity/Admin.java -------------------------------------------------------------------------------- /src/com/southwind/entity/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/entity/Book.java -------------------------------------------------------------------------------- /src/com/southwind/entity/BookCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/entity/BookCase.java -------------------------------------------------------------------------------- /src/com/southwind/entity/Borrow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/entity/Borrow.java -------------------------------------------------------------------------------- /src/com/southwind/entity/Reader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/entity/Reader.java -------------------------------------------------------------------------------- /src/com/southwind/filter/AdminFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/filter/AdminFilter.java -------------------------------------------------------------------------------- /src/com/southwind/filter/ReaderFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/filter/ReaderFilter.java -------------------------------------------------------------------------------- /src/com/southwind/repository/AdminRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/repository/AdminRepository.java -------------------------------------------------------------------------------- /src/com/southwind/repository/BookRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/repository/BookRepository.java -------------------------------------------------------------------------------- /src/com/southwind/repository/BorrowRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/repository/BorrowRepository.java -------------------------------------------------------------------------------- /src/com/southwind/repository/ReaderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/repository/ReaderRepository.java -------------------------------------------------------------------------------- /src/com/southwind/repository/impl/AdminRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/repository/impl/AdminRepositoryImpl.java -------------------------------------------------------------------------------- /src/com/southwind/repository/impl/BookRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/repository/impl/BookRepositoryImpl.java -------------------------------------------------------------------------------- /src/com/southwind/repository/impl/BorrowRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/repository/impl/BorrowRepositoryImpl.java -------------------------------------------------------------------------------- /src/com/southwind/repository/impl/ReaderRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/repository/impl/ReaderRepositoryImpl.java -------------------------------------------------------------------------------- /src/com/southwind/service/BookService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/service/BookService.java -------------------------------------------------------------------------------- /src/com/southwind/service/LoginService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/service/LoginService.java -------------------------------------------------------------------------------- /src/com/southwind/service/impl/BookServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/service/impl/BookServiceImpl.java -------------------------------------------------------------------------------- /src/com/southwind/service/impl/LoginServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/service/impl/LoginServiceImpl.java -------------------------------------------------------------------------------- /src/com/southwind/utils/JDBCTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/src/com/southwind/utils/JDBCTools.java -------------------------------------------------------------------------------- /web/WEB-INF/lib/c3p0-0.9.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/WEB-INF/lib/c3p0-0.9.1.2.jar -------------------------------------------------------------------------------- /web/WEB-INF/lib/jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/WEB-INF/lib/jstl.jar -------------------------------------------------------------------------------- /web/WEB-INF/lib/mysql-connector-java-3.1.7-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/WEB-INF/lib/mysql-connector-java-3.1.7-bin.jar -------------------------------------------------------------------------------- /web/WEB-INF/lib/standard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/WEB-INF/lib/standard.jar -------------------------------------------------------------------------------- /web/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/WEB-INF/web.xml -------------------------------------------------------------------------------- /web/admin.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/admin.jsp -------------------------------------------------------------------------------- /web/borrow.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/borrow.jsp -------------------------------------------------------------------------------- /web/css/examine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/css/examine.css -------------------------------------------------------------------------------- /web/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/css/footer.css -------------------------------------------------------------------------------- /web/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/css/index.css -------------------------------------------------------------------------------- /web/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/css/login.css -------------------------------------------------------------------------------- /web/css/myBorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/css/myBorrow.css -------------------------------------------------------------------------------- /web/css/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/css/register.css -------------------------------------------------------------------------------- /web/css/return.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/css/return.css -------------------------------------------------------------------------------- /web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/css/style.css -------------------------------------------------------------------------------- /web/css/top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/css/top.css -------------------------------------------------------------------------------- /web/footer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/footer.jsp -------------------------------------------------------------------------------- /web/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/Thumbs.db -------------------------------------------------------------------------------- /web/images/borrowBackRenew.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/borrowBackRenew.gif -------------------------------------------------------------------------------- /web/images/borrowBackRenew_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/borrowBackRenew_back.gif -------------------------------------------------------------------------------- /web/images/borrowBackRenew_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/borrowBackRenew_r.gif -------------------------------------------------------------------------------- /web/images/borrow_if.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/borrow_if.gif -------------------------------------------------------------------------------- /web/images/copyright_t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/copyright_t.gif -------------------------------------------------------------------------------- /web/images/error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/error.jpg -------------------------------------------------------------------------------- /web/images/error_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/error_b.gif -------------------------------------------------------------------------------- /web/images/item_out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/item_out.gif -------------------------------------------------------------------------------- /web/images/item_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/item_over.gif -------------------------------------------------------------------------------- /web/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/login.jpg -------------------------------------------------------------------------------- /web/images/main_booksort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/main_booksort.gif -------------------------------------------------------------------------------- /web/images/main_booksort_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/main_booksort_1.gif -------------------------------------------------------------------------------- /web/images/main_booksort_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/main_booksort_2.gif -------------------------------------------------------------------------------- /web/images/main_readersort_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/main_readersort_1.gif -------------------------------------------------------------------------------- /web/images/more.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/more.GIF -------------------------------------------------------------------------------- /web/images/navigation_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/navigation_bg.gif -------------------------------------------------------------------------------- /web/images/navigation_bg_bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/navigation_bg_bottom.gif -------------------------------------------------------------------------------- /web/images/reader_checkbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/reader_checkbg.jpg -------------------------------------------------------------------------------- /web/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/search.gif -------------------------------------------------------------------------------- /web/images/subBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/subBG.jpg -------------------------------------------------------------------------------- /web/images/top_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/images/top_bg.gif -------------------------------------------------------------------------------- /web/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/index.jsp -------------------------------------------------------------------------------- /web/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/js/index.js -------------------------------------------------------------------------------- /web/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /web/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/js/register.js -------------------------------------------------------------------------------- /web/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/login.jsp -------------------------------------------------------------------------------- /web/return.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/return.jsp -------------------------------------------------------------------------------- /web/top.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No18LibraryManagementSystem/HEAD/web/top.jsp --------------------------------------------------------------------------------