在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例WEB/WAP应用开发 → 图书管理系统

图书管理系统

WEB/WAP应用开发

下载此实例
  • 开发语言:Java
  • 实例大小:46.41M
  • 下载次数:41
  • 浏览次数:249
  • 发布时间:2022-10-31
  • 实例类别:WEB/WAP应用开发
  • 发 布 人:3196
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】图书管理系统

【实例截图】

from clipboardfrom clipboard

【核心代码】

.
├── 4-sql
│   └── library.sql
├── library-system-master
│   ├── LICENSE
│   ├── README.en.md
│   ├── README.md
│   ├── pom.xml
│   ├── src
│   │   └── main
│   │       ├── #define_CRT_SECURE_NO_WARNINGS.c
│   │       ├── java
│   │       │   └── com
│   │       │       └── yx
│   │       │           ├── codeutil
│   │       │           │   ├── IVerifyCodeGen.java
│   │       │           │   ├── RandomUtils.java
│   │       │           │   ├── SimpleCharVerifyCodeGenImpl.java
│   │       │           │   └── VerifyCode.java
│   │       │           ├── controller
│   │       │           │   ├── AdminController.java
│   │       │           │   ├── BaseController.java
│   │       │           │   ├── BookInfoController.java
│   │       │           │   ├── LendListController.java
│   │       │           │   ├── LoginController.java
│   │       │           │   ├── NoticeController.java
│   │       │           │   ├── ReaderInfoController.java
│   │       │           │   ├── StatisticsController.java
│   │       │           │   └── TypeInfoController.java
│   │       │           ├── dao
│   │       │           │   ├── AdminMapper.java
│   │       │           │   ├── BookInfoMapper.java
│   │       │           │   ├── LendListMapper.java
│   │       │           │   ├── NoticeMapper.java
│   │       │           │   ├── ReaderInfoMapper.java
│   │       │           │   └── TypeInfoMapper.java
│   │       │           ├── interceptor
│   │       │           │   └── LoginInterceptor.java
│   │       │           ├── po
│   │       │           │   ├── Admin.java
│   │       │           │   ├── BookInfo.java
│   │       │           │   ├── LendList.java
│   │       │           │   ├── Notice.java
│   │       │           │   ├── ReaderInfo.java
│   │       │           │   └── TypeInfo.java
│   │       │           ├── service
│   │       │           │   ├── AdminService.java
│   │       │           │   ├── BookInfoService.java
│   │       │           │   ├── LendListService.java
│   │       │           │   ├── NoticeService.java
│   │       │           │   ├── ReaderInfoService.java
│   │       │           │   ├── TypeInfoService.java
│   │       │           │   └── impl
│   │       │           │       ├── AdminServiceImpl.java
│   │       │           │       ├── BookInfoServiceImpl.java
│   │       │           │       ├── LendListServiceImpl.java
│   │       │           │       ├── NoticeServiceImpl.java
│   │       │           │       ├── ReaderInfoServiceImpl.java
│   │       │           │       └── TypeInfoServiceImpl.java
│   │       │           └── utils
│   │       │               ├── Constants.java
│   │       │               └── DataInfo.java
│   │       ├── resources
│   │       │   ├── com
│   │       │   │   └── yx
│   │       │   │       └── dao
│   │       │   │           ├── AdminMapper.xml
│   │       │   │           ├── BookInfoMapper.xml
│   │       │   │           ├── LendListMapper.xml
│   │       │   │           ├── NoticeMapper.xml
│   │       │   │           ├── ReaderInfoMapper.xml
│   │       │   │           └── TypeInfoMapper.xml
│   │       │   ├── db.properties
│   │       │   ├── generatorConfig.xml
│   │       │   ├── spring.xml
│   │       │   └── springmvc.xml
│   │       └── webapp
│   │           ├── WEB-INF
│   │           │   ├── pages
│   │           │   │   ├── admin
│   │           │   │   │   ├── adminAdd.jsp
│   │           │   │   │   ├── adminIndex.jsp
│   │           │   │   │   └── updateAdmin.jsp
│   │           │   │   ├── book
│   │           │   │   │   ├── bookAdd.jsp
│   │           │   │   │   ├── bookIndex.jsp
│   │           │   │   │   └── updateBook.jsp
│   │           │   │   ├── count
│   │           │   │   │   └── statisticIndex.jsp
│   │           │   │   ├── index.jsp
│   │           │   │   ├── lend
│   │           │   │   │   ├── addLendList.jsp
│   │           │   │   │   ├── excBackBook.jsp
│   │           │   │   │   ├── lendListIndex.jsp
│   │           │   │   │   └── lookBookList.jsp
│   │           │   │   ├── login.jsp
│   │           │   │   ├── notice
│   │           │   │   │   ├── noticeAdd.jsp
│   │           │   │   │   ├── noticeIndexOfBack.jsp
│   │           │   │   │   ├── noticeIndexOfReader.jsp
│   │           │   │   │   └── updateNotice.jsp
│   │           │   │   ├── pwdUpdate
│   │           │   │   │   └── updatePwd.jsp
│   │           │   │   ├── reader
│   │           │   │   │   ├── readerAdd.jsp
│   │           │   │   │   ├── readerIndex.jsp
│   │           │   │   │   └── updateReader.jsp
│   │           │   │   ├── type
│   │           │   │   │   ├── typeAdd.jsp
│   │           │   │   │   ├── typeIndex.jsp
│   │           │   │   │   └── updateType.jsp
│   │           │   │   └── welcome.jsp
│   │           │   └── web.xml
│   │           ├── api
│   │           │   ├── clear.json
│   │           │   ├── init.json
│   │           │   ├── init2.json
│   │           │   ├── menus.json
│   │           │   ├── table.json
│   │           │   ├── tableSelect.json
│   │           │   └── upload.json
│   │           ├── css
│   │           │   ├── layuimini.css
│   │           │   ├── public.css
│   │           │   └── themes
│   │           │       └── default.css
│   │           ├── images
│   │           │   ├── 2.jfif
│   │           │   ├── bg.png
│   │           │   ├── captcha.jpg
│   │           │   ├── donate_qrcode.png
│   │           │   ├── favicon.ico
│   │           │   ├── home.png
│   │           │   ├── loginbg.png
│   │           │   ├── logo.jpg
│   │           │   └── logo.png
│   │           ├── js
│   │           │   ├── lay-config.js
│   │           │   └── lay-module
│   │           │       ├── echarts
│   │           │       │   ├── echarts.js
│   │           │       │   └── echartsTheme.js
│   │           │       ├── iconPicker
│   │           │       │   └── iconPickerFa.js
│   │           │       ├── layarea
│   │           │       │   └── layarea.js
│   │           │       ├── layuimini
│   │           │       │   ├── miniAdmin.js
│   │           │       │   ├── miniMenu.js
│   │           │       │   ├── miniTab.js
│   │           │       │   ├── miniTheme.js
│   │           │       │   └── miniTongji.js
│   │           │       ├── step-lay
│   │           │       │   ├── step.css
│   │           │       │   └── step.js
│   │           │       ├── tableSelect
│   │           │       │   └── tableSelect.js
│   │           │       ├── treetable-lay
│   │           │       │   ├── treetable.css
│   │           │       │   └── treetable.js
│   │           │       └── wangEditor
│   │           │           ├── fonts
│   │           │           │   └── w-e-icon.woff
│   │           │           ├── wangEditor.css
│   │           │           ├── wangEditor.js
│   │           │           ├── wangEditor.min.css
│   │           │           ├── wangEditor.min.js
│   │           │           └── wangEditor.min.js.map
│   │           ├── lib
│   │           │   ├── font-awesome-4.7.0
│   │           │   │   ├── HELP-US-OUT.txt
│   │           │   │   ├── css
│   │           │   │   │   ├── font-awesome.css
│   │           │   │   │   └── font-awesome.min.css
│   │           │   │   ├── fonts
│   │           │   │   │   ├── FontAwesome.otf
│   │           │   │   │   ├── fontawesome-webfont.eot
│   │           │   │   │   ├── fontawesome-webfont.svg
│   │           │   │   │   ├── fontawesome-webfont.ttf
│   │           │   │   │   ├── fontawesome-webfont.woff
│   │           │   │   │   └── fontawesome-webfont.woff2
│   │           │   │   ├── less
│   │           │   │   │   ├── animated.less
│   │           │   │   │   ├── bordered-pulled.less
│   │           │   │   │   ├── core.less
│   │           │   │   │   ├── fixed-width.less
│   │           │   │   │   ├── font-awesome.less
│   │           │   │   │   ├── icons.less
│   │           │   │   │   ├── larger.less
│   │           │   │   │   ├── list.less
│   │           │   │   │   ├── mixins.less
│   │           │   │   │   ├── path.less
│   │           │   │   │   ├── rotated-flipped.less
│   │           │   │   │   ├── screen-reader.less
│   │           │   │   │   ├── stacked.less
│   │           │   │   │   └── variables.less
│   │           │   │   └── scss
│   │           │   │       ├── _animated.scss
│   │           │   │       ├── _bordered-pulled.scss
│   │           │   │       ├── _core.scss
│   │           │   │       ├── _fixed-width.scss
│   │           │   │       ├── _icons.scss
│   │           │   │       ├── _larger.scss
│   │           │   │       ├── _list.scss
│   │           │   │       ├── _mixins.scss
│   │           │   │       ├── _path.scss
│   │           │   │       ├── _rotated-flipped.scss
│   │           │   │       ├── _screen-reader.scss
│   │           │   │       ├── _stacked.scss
│   │           │   │       ├── _variables.scss
│   │           │   │       └── font-awesome.scss
│   │           │   ├── jq-module
│   │           │   │   ├── jquery.particleground.min.js
│   │           │   │   ├── paigusu.min.js
│   │           │   │   └── zyupload
│   │           │   │       ├── zyupload-1.0.0.min.css
│   │           │   │       └── zyupload-1.0.0.min.js
│   │           │   ├── jquery-3.4.1
│   │           │   │   └── jquery-3.4.1.min.js
│   │           │   └── layui-v2.5.5
│   │           │       ├── css
│   │           │       │   ├── layui.css
│   │           │       │   ├── layui.mobile.css
│   │           │       │   └── modules
│   │           │       │       ├── code.css
│   │           │       │       ├── laydate
│   │           │       │       │   └── default
│   │           │       │       │       └── laydate.css
│   │           │       │       └── layer
│   │           │       │           └── default
│   │           │       │               ├── icon-ext.png
│   │           │       │               ├── icon.png
│   │           │       │               ├── layer.css
│   │           │       │               ├── loading-0.gif
│   │           │       │               ├── loading-1.gif
│   │           │       │               └── loading-2.gif
│   │           │       ├── font
│   │           │       │   ├── iconfont.eot
│   │           │       │   ├── iconfont.svg
│   │           │       │   ├── iconfont.ttf
│   │           │       │   ├── iconfont.woff
│   │           │       │   └── iconfont.woff2
│   │           │       ├── images
│   │           │       │   └── face
│   │           │       │       ├── 0.gif
│   │           │       │       ├── 1.gif
│   │           │       │       ├── 10.gif
│   │           │       │       ├── 11.gif
│   │           │       │       ├── 12.gif
│   │           │       │       ├── 13.gif
│   │           │       │       ├── 14.gif
│   │           │       │       ├── 15.gif
│   │           │       │       ├── 16.gif
│   │           │       │       ├── 17.gif
│   │           │       │       ├── 18.gif
│   │           │       │       ├── 19.gif
│   │           │       │       ├── 2.gif
│   │           │       │       ├── 20.gif
│   │           │       │       ├── 21.gif
│   │           │       │       ├── 22.gif
│   │           │       │       ├── 23.gif
│   │           │       │       ├── 24.gif
│   │           │       │       ├── 25.gif
│   │           │       │       ├── 26.gif
│   │           │       │       ├── 27.gif
│   │           │       │       ├── 28.gif
│   │           │       │       ├── 29.gif
│   │           │       │       ├── 3.gif
│   │           │       │       ├── 30.gif
│   │           │       │       ├── 31.gif
│   │           │       │       ├── 32.gif
│   │           │       │       ├── 33.gif
│   │           │       │       ├── 34.gif
│   │           │       │       ├── 35.gif
│   │           │       │       ├── 36.gif
│   │           │       │       ├── 37.gif
│   │           │       │       ├── 38.gif
│   │           │       │       ├── 39.gif
│   │           │       │       ├── 4.gif
│   │           │       │       ├── 40.gif
│   │           │       │       ├── 41.gif
│   │           │       │       ├── 42.gif
│   │           │       │       ├── 43.gif
│   │           │       │       ├── 44.gif
│   │           │       │       ├── 45.gif
│   │           │       │       ├── 46.gif
│   │           │       │       ├── 47.gif
│   │           │       │       ├── 48.gif
│   │           │       │       ├── 49.gif
│   │           │       │       ├── 5.gif
│   │           │       │       ├── 50.gif
│   │           │       │       ├── 51.gif
│   │           │       │       ├── 52.gif
│   │           │       │       ├── 53.gif
│   │           │       │       ├── 54.gif
│   │           │       │       ├── 55.gif
│   │           │       │       ├── 56.gif
│   │           │       │       ├── 57.gif
│   │           │       │       ├── 58.gif
│   │           │       │       ├── 59.gif
│   │           │       │       ├── 6.gif
│   │           │       │       ├── 60.gif
│   │           │       │       ├── 61.gif
│   │           │       │       ├── 62.gif
│   │           │       │       ├── 63.gif
│   │           │       │       ├── 64.gif
│   │           │       │       ├── 65.gif
│   │           │       │       ├── 66.gif
│   │           │       │       ├── 67.gif
│   │           │       │       ├── 68.gif
│   │           │       │       ├── 69.gif
│   │           │       │       ├── 7.gif
│   │           │       │       ├── 70.gif
│   │           │       │       ├── 71.gif
│   │           │       │       ├── 8.gif
│   │           │       │       └── 9.gif
│   │           │       ├── lay
│   │           │       │   └── modules
│   │           │       │       ├── carousel.js
│   │           │       │       ├── code.js
│   │           │       │       ├── colorpicker.js
│   │           │       │       ├── element.js
│   │           │       │       ├── flow.js
│   │           │       │       ├── form.js
│   │           │       │       ├── jquery.js
│   │           │       │       ├── laydate.js
│   │           │       │       ├── layedit.js
│   │           │       │       ├── layer.js
│   │           │       │       ├── laypage.js
│   │           │       │       ├── laytpl.js
│   │           │       │       ├── mobile.js
│   │           │       │       ├── rate.js
│   │           │       │       ├── slider.js
│   │           │       │       ├── table.js
│   │           │       │       ├── transfer.js
│   │           │       │       ├── tree.js
│   │           │       │       ├── upload.js
│   │           │       │       └── util.js
│   │           │       ├── layui.all.js
│   │           │       └── layui.js
│   │           └── page
│   │               ├── 404.html
│   │               ├── area.html
│   │               ├── button.html
│   │               ├── color-select.html
│   │               ├── editor.html
│   │               ├── form-step.html
│   │               ├── form.html
│   │               ├── icon-picker.html
│   │               ├── icon.html
│   │               ├── layer.html
│   │               ├── login-1.html
│   │               ├── login-2.html
│   │               ├── menu.html
│   │               ├── setting.html
│   │               ├── table
│   │               │   ├── add.html
│   │               │   └── edit.html
│   │               ├── table-select.html
│   │               ├── table.html
│   │               ├── upload.html
│   │               ├── user-password.html
│   │               ├── user-setting.html
│   │               ├── welcome-1.html
│   │               ├── welcome-2.html
│   │               └── welcome-3.html
│   └── target
│       ├── LibraryProject-1.0-SNAPSHOT
│       │   ├── META-INF
│       │   │   └── MANIFEST.MF
│       │   ├── WEB-INF
│       │   │   ├── classes
│       │   │   │   ├── com
│       │   │   │   │   └── yx
│       │   │   │   │       ├── codeutil
│       │   │   │   │       │   ├── IVerifyCodeGen.class
│       │   │   │   │       │   ├── RandomUtils.class
│       │   │   │   │       │   ├── SimpleCharVerifyCodeGenImpl.class
│       │   │   │   │       │   └── VerifyCode.class
│       │   │   │   │       ├── controller
│       │   │   │   │       │   ├── AdminController.class
│       │   │   │   │       │   ├── BaseController.class
│       │   │   │   │       │   ├── BookInfoController.class
│       │   │   │   │       │   ├── LendListController.class
│       │   │   │   │       │   ├── LoginController.class
│       │   │   │   │       │   ├── NoticeController.class
│       │   │   │   │       │   ├── ReaderInfoController.class
│       │   │   │   │       │   ├── StatisticsController.class
│       │   │   │   │       │   └── TypeInfoController.class
│       │   │   │   │       ├── dao
│       │   │   │   │       │   ├── AdminMapper.class
│       │   │   │   │       │   ├── AdminMapper.xml
│       │   │   │   │       │   ├── BookInfoMapper.class
│       │   │   │   │       │   ├── BookInfoMapper.xml
│       │   │   │   │       │   ├── LendListMapper.class
│       │   │   │   │       │   ├── LendListMapper.xml
│       │   │   │   │       │   ├── NoticeMapper.class
│       │   │   │   │       │   ├── NoticeMapper.xml
│       │   │   │   │       │   ├── ReaderInfoMapper.class
│       │   │   │   │       │   ├── ReaderInfoMapper.xml
│       │   │   │   │       │   ├── TypeInfoMapper.class
│       │   │   │   │       │   └── TypeInfoMapper.xml
│       │   │   │   │       ├── interceptor
│       │   │   │   │       │   └── LoginInterceptor.class
│       │   │   │   │       ├── po
│       │   │   │   │       │   ├── Admin.class
│       │   │   │   │       │   ├── BookInfo.class
│       │   │   │   │       │   ├── LendList.class
│       │   │   │   │       │   ├── Notice.class
│       │   │   │   │       │   ├── ReaderInfo.class
│       │   │   │   │       │   └── TypeInfo.class
│       │   │   │   │       ├── service
│       │   │   │   │       │   ├── AdminService.class
│       │   │   │   │       │   ├── BookInfoService.class
│       │   │   │   │       │   ├── LendListService.class
│       │   │   │   │       │   ├── NoticeService.class
│       │   │   │   │       │   ├── ReaderInfoService.class
│       │   │   │   │       │   ├── TypeInfoService.class
│       │   │   │   │       │   └── impl
│       │   │   │   │       │       ├── AdminServiceImpl.class
│       │   │   │   │       │       ├── BookInfoServiceImpl.class
│       │   │   │   │       │       ├── LendListServiceImpl.class
│       │   │   │   │       │       ├── NoticeServiceImpl.class
│       │   │   │   │       │       ├── ReaderInfoServiceImpl.class
│       │   │   │   │       │       └── TypeInfoServiceImpl.class
│       │   │   │   │       └── utils
│       │   │   │   │           ├── Constants.class
│       │   │   │   │           └── DataInfo.class
│       │   │   │   ├── db.properties
│       │   │   │   ├── generatorConfig.xml
│       │   │   │   ├── spring.xml
│       │   │   │   └── springmvc.xml
│       │   │   ├── lib
│       │   │   │   ├── aspectjweaver-1.6.8.jar
│       │   │   │   ├── commons-lang3-3.4.jar
│       │   │   │   ├── druid-1.1.16.jar
│       │   │   │   ├── fastjson-1.2.54.jar
│       │   │   │   ├── hamcrest-core-1.3.jar
│       │   │   │   ├── jsqlparser-2.0.jar
│       │   │   │   ├── jstl-1.2.jar
│       │   │   │   ├── junit-4.12.jar
│       │   │   │   ├── log4j-1.2.12.jar
│       │   │   │   ├── mybatis-3.4.5.jar
│       │   │   │   ├── mybatis-generator-core-1.3.7.jar
│       │   │   │   ├── mybatis-spring-1.3.0.jar
│       │   │   │   ├── mysql-connector-java-8.0.19.jar
│       │   │   │   ├── pagehelper-5.1.10.jar
│       │   │   │   ├── protobuf-java-3.6.1.jar
│       │   │   │   ├── slf4j-api-1.6.6.jar
│       │   │   │   ├── slf4j-log4j12-1.6.6.jar
│       │   │   │   ├── spring-aop-5.1.3.RELEASE.jar
│       │   │   │   ├── spring-beans-5.1.3.RELEASE.jar
│       │   │   │   ├── spring-context-5.1.3.RELEASE.jar
│       │   │   │   ├── spring-core-5.1.3.RELEASE.jar
│       │   │   │   ├── spring-expression-5.1.3.RELEASE.jar
│       │   │   │   ├── spring-jcl-5.1.3.RELEASE.jar
│       │   │   │   ├── spring-jdbc-5.1.3.RELEASE.jar
│       │   │   │   ├── spring-test-5.1.3.RELEASE.jar
│       │   │   │   ├── spring-tx-5.1.3.RELEASE.jar
│       │   │   │   ├── spring-web-5.1.3.RELEASE.jar
│       │   │   │   └── spring-webmvc-5.1.3.RELEASE.jar
│       │   │   ├── pages
│       │   │   │   ├── admin
│       │   │   │   │   ├── adminAdd.jsp
│       │   │   │   │   ├── adminIndex.jsp
│       │   │   │   │   └── updateAdmin.jsp
│       │   │   │   ├── book
│       │   │   │   │   ├── bookAdd.jsp
│       │   │   │   │   ├── bookIndex.jsp
│       │   │   │   │   └── updateBook.jsp
│       │   │   │   ├── count
│       │   │   │   │   └── statisticIndex.jsp
│       │   │   │   ├── index.jsp
│       │   │   │   ├── lend
│       │   │   │   │   ├── addLendList.jsp
│       │   │   │   │   ├── excBackBook.jsp
│       │   │   │   │   ├── lendListIndex.jsp
│       │   │   │   │   └── lookBookList.jsp
│       │   │   │   ├── login.jsp
│       │   │   │   ├── notice
│       │   │   │   │   ├── noticeAdd.jsp
│       │   │   │   │   ├── noticeIndexOfBack.jsp
│       │   │   │   │   ├── noticeIndexOfReader.jsp
│       │   │   │   │   └── updateNotice.jsp
│       │   │   │   ├── pwdUpdate
│       │   │   │   │   └── updatePwd.jsp
│       │   │   │   ├── reader
│       │   │   │   │   ├── readerAdd.jsp
│       │   │   │   │   ├── readerIndex.jsp
│       │   │   │   │   └── updateReader.jsp
│       │   │   │   ├── type
│       │   │   │   │   ├── typeAdd.jsp
│       │   │   │   │   ├── typeIndex.jsp
│       │   │   │   │   └── updateType.jsp
│       │   │   │   └── welcome.jsp
│       │   │   └── web.xml
│       │   ├── api
│       │   │   ├── clear.json
│       │   │   ├── init.json
│       │   │   ├── init2.json
│       │   │   ├── menus.json
│       │   │   ├── table.json
│       │   │   ├── tableSelect.json
│       │   │   └── upload.json
│       │   ├── css
│       │   │   ├── layuimini.css
│       │   │   ├── public.css
│       │   │   └── themes
│       │   │       └── default.css
│       │   ├── images
│       │   │   ├── 2.jfif
│       │   │   ├── bg.png
│       │   │   ├── captcha.jpg
│       │   │   ├── donate_qrcode.png
│       │   │   ├── favicon.ico
│       │   │   ├── home.png
│       │   │   ├── loginbg.png
│       │   │   ├── logo.jpg
│       │   │   └── logo.png
│       │   ├── js
│       │   │   ├── lay-config.js
│       │   │   └── lay-module
│       │   │       ├── echarts
│       │   │       │   ├── echarts.js
│       │   │       │   └── echartsTheme.js
│       │   │       ├── iconPicker
│       │   │       │   └── iconPickerFa.js
│       │   │       ├── layarea
│       │   │       │   └── layarea.js
│       │   │       ├── layuimini
│       │   │       │   ├── miniAdmin.js
│       │   │       │   ├── miniMenu.js
│       │   │       │   ├── miniTab.js
│       │   │       │   ├── miniTheme.js
│       │   │       │   └── miniTongji.js
│       │   │       ├── step-lay
│       │   │       │   ├── step.css
│       │   │       │   └── step.js
│       │   │       ├── tableSelect
│       │   │       │   └── tableSelect.js
│       │   │       ├── treetable-lay
│       │   │       │   ├── treetable.css
│       │   │       │   └── treetable.js
│       │   │       └── wangEditor
│       │   │           ├── fonts
│       │   │           │   └── w-e-icon.woff
│       │   │           ├── wangEditor.css
│       │   │           ├── wangEditor.js
│       │   │           ├── wangEditor.min.css
│       │   │           ├── wangEditor.min.js
│       │   │           └── wangEditor.min.js.map
│       │   ├── lib
│       │   │   ├── font-awesome-4.7.0
│       │   │   │   ├── HELP-US-OUT.txt
│       │   │   │   ├── css
│       │   │   │   │   ├── font-awesome.css
│       │   │   │   │   └── font-awesome.min.css
│       │   │   │   ├── fonts
│       │   │   │   │   ├── FontAwesome.otf
│       │   │   │   │   ├── fontawesome-webfont.eot
│       │   │   │   │   ├── fontawesome-webfont.svg
│       │   │   │   │   ├── fontawesome-webfont.ttf
│       │   │   │   │   ├── fontawesome-webfont.woff
│       │   │   │   │   └── fontawesome-webfont.woff2
│       │   │   │   ├── less
│       │   │   │   │   ├── animated.less
│       │   │   │   │   ├── bordered-pulled.less
│       │   │   │   │   ├── core.less
│       │   │   │   │   ├── fixed-width.less
│       │   │   │   │   ├── font-awesome.less
│       │   │   │   │   ├── icons.less
│       │   │   │   │   ├── larger.less
│       │   │   │   │   ├── list.less
│       │   │   │   │   ├── mixins.less
│       │   │   │   │   ├── path.less
│       │   │   │   │   ├── rotated-flipped.less
│       │   │   │   │   ├── screen-reader.less
│       │   │   │   │   ├── stacked.less
│       │   │   │   │   └── variables.less
│       │   │   │   └── scss
│       │   │   │       ├── _animated.scss
│       │   │   │       ├── _bordered-pulled.scss
│       │   │   │       ├── _core.scss
│       │   │   │       ├── _fixed-width.scss
│       │   │   │       ├── _icons.scss
│       │   │   │       ├── _larger.scss
│       │   │   │       ├── _list.scss
│       │   │   │       ├── _mixins.scss
│       │   │   │       ├── _path.scss
│       │   │   │       ├── _rotated-flipped.scss
│       │   │   │       ├── _screen-reader.scss
│       │   │   │       ├── _stacked.scss
│       │   │   │       ├── _variables.scss
│       │   │   │       └── font-awesome.scss
│       │   │   ├── jq-module
│       │   │   │   ├── jquery.particleground.min.js
│       │   │   │   ├── paigusu.min.js
│       │   │   │   └── zyupload
│       │   │   │       ├── zyupload-1.0.0.min.css
│       │   │   │       └── zyupload-1.0.0.min.js
│       │   │   ├── jquery-3.4.1
│       │   │   │   └── jquery-3.4.1.min.js
│       │   │   └── layui-v2.5.5
│       │   │       ├── css
│       │   │       │   ├── layui.css
│       │   │       │   ├── layui.mobile.css
│       │   │       │   └── modules
│       │   │       │       ├── code.css
│       │   │       │       ├── laydate
│       │   │       │       │   └── default
│       │   │       │       │       └── laydate.css
│       │   │       │       └── layer
│       │   │       │           └── default
│       │   │       │               ├── icon-ext.png
│       │   │       │               ├── icon.png
│       │   │       │               ├── layer.css
│       │   │       │               ├── loading-0.gif
│       │   │       │               ├── loading-1.gif
│       │   │       │               └── loading-2.gif
│       │   │       ├── font
│       │   │       │   ├── iconfont.eot
│       │   │       │   ├── iconfont.svg
│       │   │       │   ├── iconfont.ttf
│       │   │       │   ├── iconfont.woff
│       │   │       │   └── iconfont.woff2
│       │   │       ├── images
│       │   │       │   └── face
│       │   │       │       ├── 0.gif
│       │   │       │       ├── 1.gif
│       │   │       │       ├── 10.gif
│       │   │       │       ├── 11.gif
│       │   │       │       ├── 12.gif
│       │   │       │       ├── 13.gif
│       │   │       │       ├── 14.gif
│       │   │       │       ├── 15.gif
│       │   │       │       ├── 16.gif
│       │   │       │       ├── 17.gif
│       │   │       │       ├── 18.gif
│       │   │       │       ├── 19.gif
│       │   │       │       ├── 2.gif
│       │   │       │       ├── 20.gif
│       │   │       │       ├── 21.gif
│       │   │       │       ├── 22.gif
│       │   │       │       ├── 23.gif
│       │   │       │       ├── 24.gif
│       │   │       │       ├── 25.gif
│       │   │       │       ├── 26.gif
│       │   │       │       ├── 27.gif
│       │   │       │       ├── 28.gif
│       │   │       │       ├── 29.gif
│       │   │       │       ├── 3.gif
│       │   │       │       ├── 30.gif
│       │   │       │       ├── 31.gif
│       │   │       │       ├── 32.gif
│       │   │       │       ├── 33.gif
│       │   │       │       ├── 34.gif
│       │   │       │       ├── 35.gif
│       │   │       │       ├── 36.gif
│       │   │       │       ├── 37.gif
│       │   │       │       ├── 38.gif
│       │   │       │       ├── 39.gif
│       │   │       │       ├── 4.gif
│       │   │       │       ├── 40.gif
│       │   │       │       ├── 41.gif
│       │   │       │       ├── 42.gif
│       │   │       │       ├── 43.gif
│       │   │       │       ├── 44.gif
│       │   │       │       ├── 45.gif
│       │   │       │       ├── 46.gif
│       │   │       │       ├── 47.gif
│       │   │       │       ├── 48.gif
│       │   │       │       ├── 49.gif
│       │   │       │       ├── 5.gif
│       │   │       │       ├── 50.gif
│       │   │       │       ├── 51.gif
│       │   │       │       ├── 52.gif
│       │   │       │       ├── 53.gif
│       │   │       │       ├── 54.gif
│       │   │       │       ├── 55.gif
│       │   │       │       ├── 56.gif
│       │   │       │       ├── 57.gif
│       │   │       │       ├── 58.gif
│       │   │       │       ├── 59.gif
│       │   │       │       ├── 6.gif
│       │   │       │       ├── 60.gif
│       │   │       │       ├── 61.gif
│       │   │       │       ├── 62.gif
│       │   │       │       ├── 63.gif
│       │   │       │       ├── 64.gif
│       │   │       │       ├── 65.gif
│       │   │       │       ├── 66.gif
│       │   │       │       ├── 67.gif
│       │   │       │       ├── 68.gif
│       │   │       │       ├── 69.gif
│       │   │       │       ├── 7.gif
│       │   │       │       ├── 70.gif
│       │   │       │       ├── 71.gif
│       │   │       │       ├── 8.gif
│       │   │       │       └── 9.gif
│       │   │       ├── lay
│       │   │       │   └── modules
│       │   │       │       ├── carousel.js
│       │   │       │       ├── code.js
│       │   │       │       ├── colorpicker.js
│       │   │       │       ├── element.js
│       │   │       │       ├── flow.js
│       │   │       │       ├── form.js
│       │   │       │       ├── jquery.js
│       │   │       │       ├── laydate.js
│       │   │       │       ├── layedit.js
│       │   │       │       ├── layer.js
│       │   │       │       ├── laypage.js
│       │   │       │       ├── laytpl.js
│       │   │       │       ├── mobile.js
│       │   │       │       ├── rate.js
│       │   │       │       ├── slider.js
│       │   │       │       ├── table.js
│       │   │       │       ├── transfer.js
│       │   │       │       ├── tree.js
│       │   │       │       ├── upload.js
│       │   │       │       └── util.js
│       │   │       ├── layui.all.js
│       │   │       └── layui.js
│       │   └── page
│       │       ├── 404.html
│       │       ├── area.html
│       │       ├── button.html
│       │       ├── color-select.html
│       │       ├── editor.html
│       │       ├── form-step.html
│       │       ├── form.html
│       │       ├── icon-picker.html
│       │       ├── icon.html
│       │       ├── layer.html
│       │       ├── login-1.html
│       │       ├── login-2.html
│       │       ├── menu.html
│       │       ├── setting.html
│       │       ├── table
│       │       │   ├── add.html
│       │       │   └── edit.html
│       │       ├── table-select.html
│       │       ├── table.html
│       │       ├── upload.html
│       │       ├── user-password.html
│       │       ├── user-setting.html
│       │       ├── welcome-1.html
│       │       ├── welcome-2.html
│       │       └── welcome-3.html
│       ├── LibraryProject-1.0-SNAPSHOT.war
│       ├── classes
│       │   ├── com
│       │   │   └── yx
│       │   │       ├── codeutil
│       │   │       │   ├── IVerifyCodeGen.class
│       │   │       │   ├── RandomUtils.class
│       │   │       │   ├── SimpleCharVerifyCodeGenImpl.class
│       │   │       │   └── VerifyCode.class
│       │   │       ├── controller
│       │   │       │   ├── AdminController.class
│       │   │       │   ├── BaseController.class
│       │   │       │   ├── BookInfoController.class
│       │   │       │   ├── LendListController.class
│       │   │       │   ├── LoginController.class
│       │   │       │   ├── NoticeController.class
│       │   │       │   ├── ReaderInfoController.class
│       │   │       │   ├── StatisticsController.class
│       │   │       │   └── TypeInfoController.class
│       │   │       ├── dao
│       │   │       │   ├── AdminMapper.class
│       │   │       │   ├── AdminMapper.xml
│       │   │       │   ├── BookInfoMapper.class
│       │   │       │   ├── BookInfoMapper.xml
│       │   │       │   ├── LendListMapper.class
│       │   │       │   ├── LendListMapper.xml
│       │   │       │   ├── NoticeMapper.class
│       │   │       │   ├── NoticeMapper.xml
│       │   │       │   ├── ReaderInfoMapper.class
│       │   │       │   ├── ReaderInfoMapper.xml
│       │   │       │   ├── TypeInfoMapper.class
│       │   │       │   └── TypeInfoMapper.xml
│       │   │       ├── interceptor
│       │   │       │   └── LoginInterceptor.class
│       │   │       ├── po
│       │   │       │   ├── Admin.class
│       │   │       │   ├── BookInfo.class
│       │   │       │   ├── LendList.class
│       │   │       │   ├── Notice.class
│       │   │       │   ├── ReaderInfo.class
│       │   │       │   └── TypeInfo.class
│       │   │       ├── service
│       │   │       │   ├── AdminService.class
│       │   │       │   ├── BookInfoService.class
│       │   │       │   ├── LendListService.class
│       │   │       │   ├── NoticeService.class
│       │   │       │   ├── ReaderInfoService.class
│       │   │       │   ├── TypeInfoService.class
│       │   │       │   └── impl
│       │   │       │       ├── AdminServiceImpl.class
│       │   │       │       ├── BookInfoServiceImpl.class
│       │   │       │       ├── LendListServiceImpl.class
│       │   │       │       ├── NoticeServiceImpl.class
│       │   │       │       ├── ReaderInfoServiceImpl.class
│       │   │       │       └── TypeInfoServiceImpl.class
│       │   │       └── utils
│       │   │           ├── Constants.class
│       │   │           └── DataInfo.class
│       │   ├── db.properties
│       │   ├── generatorConfig.xml
│       │   ├── spring.xml
│       │   └── springmvc.xml
│       ├── generated-sources
│       │   └── annotations
│       ├── maven-archiver
│       │   └── pom.properties
│       └── maven-status
│           └── maven-compiler-plugin
│               └── compile
│                   └── default-compile
│                       ├── createdFiles.lst
│                       └── inputFiles.lst
└── 图书管理系统_图书馆.zip

149 directories, 672 files



实例下载地址

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警