找传奇、传世资源到传世资源站!

基于ssm图书管理系统

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】基于ssm图书管理系统

【相关图片】

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

【源码结构】

.
├── library_oa
│   ├── README.md
│   ├── library_oa.iml
│   ├── library_oa.sql
│   ├── pom.xml
│   └── src
│       ├── main
│       │   ├── java
│       │   │   └── cn
│       │   │       └── test
│       │   │           └── bookms
│       │   │               ├── controller
│       │   │               │   ├── BookController.java
│       │   │               │   ├── BorrowBookController.java
│       │   │               │   ├── LoginController.java
│       │   │               │   └── ManageReaderController.java
│       │   │               ├── entity
│       │   │               │   ├── MsAdmin.java
│       │   │               │   ├── MsBook.java
│       │   │               │   ├── MsBorrow.java
│       │   │               │   ├── MsCategory.java
│       │   │               │   ├── MsOverdue.java
│       │   │               │   └── PageBean.java
│       │   │               ├── mapper
│       │   │               │   ├── MsAdminMapper.java
│       │   │               │   ├── MsBookMapper.java
│       │   │               │   ├── MsBorrowMapper.java
│       │   │               │   ├── MsCategoryMapper.java
│       │   │               │   └── MsOverdueMapper.java
│       │   │               ├── mybatisGenMan
│       │   │               │   └── GeneratorMain.java
│       │   │               ├── service
│       │   │               │   ├── MsAdminService.java
│       │   │               │   ├── MsBookService.java
│       │   │               │   ├── MsBorrowService.java
│       │   │               │   ├── MsCategoryService.java
│       │   │               │   ├── MsOverdueService.java
│       │   │               │   └── impl
│       │   │               │       ├── MsAdminServiceImpl.java
│       │   │               │       ├── MsBookServiceImpl.java
│       │   │               │       ├── MsBorrowServiceImpl.java
│       │   │               │       ├── MsCategoryServiceImpl.java
│       │   │               │       └── MsOverdueServiceImpl.java
│       │   │               └── util
│       │   │                   ├── DateUtil.java
│       │   │                   ├── DateUtilCommonConstants.java
│       │   │                   └── Message.java
│       │   ├── resources
│       │   │   ├── applicationContext.xml
│       │   │   ├── db.properties
│       │   │   ├── log4j.properties
│       │   │   ├── mappers
│       │   │   │   ├── MsAdminMapper.xml
│       │   │   │   ├── MsBookMapper.xml
│       │   │   │   ├── MsBorrowMapper.xml
│       │   │   │   ├── MsCategoryMapper.xml
│       │   │   │   └── MsOverdueMapper.xml
│       │   │   ├── mbgConfiguration.xml
│       │   │   ├── mybatis-config.xml
│       │   │   └── spring-mvc.xml
│       │   └── webapp
│       │       ├── WEB-INF
│       │       │   ├── jsp
│       │       │   │   ├── addNewBook.jsp
│       │       │   │   ├── addUser.jsp
│       │       │   │   ├── bookDetail.jsp
│       │       │   │   ├── borrowBook.jsp
│       │       │   │   ├── delBookList.jsp
│       │       │   │   ├── editBook.jsp
│       │       │   │   ├── index.jsp
│       │       │   │   ├── login.jsp
│       │       │   │   ├── nav
│       │       │   │   │   ├── bottom.jsp
│       │       │   │   │   ├── leftnav.jsp
│       │       │   │   │   └── titlenav.jsp
│       │       │   │   ├── newBookList.jsp
│       │       │   │   ├── searchBook.jsp
│       │       │   │   ├── searchReader.jsp
│       │       │   │   ├── showAllBook.jsp
│       │       │   │   ├── showAllOverdue.jsp
│       │       │   │   ├── showAllReader.jsp
│       │       │   │   ├── updatePwd.jsp
│       │       │   │   └── userDetail.jsp
│       │       │   └── web.xml
│       │       └── static
│       │           ├── css
│       │           │   ├── bootstrap.css
│       │           │   └── login.css
│       │           ├── iconfont
│       │           │   ├── fonts
│       │           │   │   ├── icomoon.eot
│       │           │   │   ├── icomoon.svg
│       │           │   │   ├── icomoon.ttf
│       │           │   │   └── icomoon.woff
│       │           │   └── style.css
│       │           ├── images
│       │           │   ├── bg.jpg
│       │           │   ├── book.jpg
│       │           │   ├── head.jpg
│       │           │   └── main_bg.png
│       │           └── layui
│       │               ├── 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
│       │               ├── 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
│       │               │       ├── tree.js
│       │               │       ├── upload.js
│       │               │       └── util.js
│       │               ├── layui.all.js
│       │               └── layui.js
│       └── test
│           └── java
│               └── test
│                   ├── TestAddBooks.java
│                   ├── TestBook.java
│                   ├── TestBorrowBook.java
│                   ├── TestLoginService.java
│                   └── TestMsCategory.java
└── 基于ssm图书管理系统_ssm_图书管理系统.zip

40 directories, 188 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复