在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → idea实现SSM+bootstrap(包换部分缓存及菜单权限)

idea实现SSM+bootstrap(包换部分缓存及菜单权限)

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:19.40M
  • 下载次数:6
  • 浏览次数:74
  • 发布时间:2020-10-23
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
ssm框架整合,前端采用bootstrap+require.js模块化,大部分页面功能都已经实现,里面包含:登录,首页,各类数据录入,菜单权限及后台Map缓存
【实例截图】
【核心代码】
projectTest0002
└── projectTest0002
├── pom.xml
├── projectTest0002.iml
├── src
│   └── main
│   ├── java
│   │   └── com
│   │   ├── common
│   │   │   ├── attach
│   │   │   │   ├── controller
│   │   │   │   │   └── Attachontroller.java
│   │   │   │   ├── dao
│   │   │   │   │   └── IAttachDao.java
│   │   │   │   ├── pojo
│   │   │   │   │   └── Attach.java
│   │   │   │   └── service
│   │   │   │   ├── IAttachService.java
│   │   │   │   └── impl
│   │   │   │   └── AttachServiceImpl.java
│   │   │   ├── base
│   │   │   │   ├── BaseController.java
│   │   │   │   ├── BaseServiceImpl.java
│   │   │   │   ├── dto
│   │   │   │   │   ├── Base.java
│   │   │   │   │   ├── PageInfo.java
│   │   │   │   │   ├── ResultVO.java
│   │   │   │   │   └── TreeVo.java
│   │   │   │   ├── IBaseDao.java
│   │   │   │   ├── IBaseService.java
│   │   │   │   └── Interceptor.java
│   │   │   ├── cache
│   │   │   │   ├── ConfCache.java
│   │   │   │   ├── controller
│   │   │   │   │   └── CacheController.java
│   │   │   │   ├── dao
│   │   │   │   │   └── ICacheDao.java
│   │   │   │   └── service
│   │   │   │   ├── ICacheService.java
│   │   │   │   └── impl
│   │   │   │   └── CacheServiceImpl.java
│   │   │   ├── Common.java
│   │   │   └── utils
│   │   │   └── StringUtils.java
│   │   ├── RandomValidateCode.java
│   │   └── system
│   │   ├── menu
│   │   │   ├── controller
│   │   │   │   └── MenuController.java
│   │   │   ├── dao
│   │   │   │   └── IMenuDao.java
│   │   │   ├── pojo
│   │   │   │   ├── Menu.java
│   │   │   │   ├── MenuSecurity.java
│   │   │   │   └── MenuVo.java
│   │   │   └── service
│   │   │   ├── IMenuService.java
│   │   │   └── impl
│   │   │   └── MenuServiceImpl.java
│   │   ├── music_home
│   │   │   ├── controller
│   │   │   │   └── AudioController.java
│   │   │   ├── dao
│   │   │   │   └── IAudioDao.java
│   │   │   ├── pojo
│   │   │   │   ├── Audio.java
│   │   │   │   └── AudioVo.java
│   │   │   └── service
│   │   │   ├── IAudioService.java
│   │   │   └── impl
│   │   │   └── AudioServiceImpl.java
│   │   ├── music_touch
│   │   │   ├── controller
│   │   │   │   └── MusicTouchController.java
│   │   │   ├── dao
│   │   │   │   └── IMusicTouchDao.java
│   │   │   ├── pojo
│   │   │   │   └── MusicTouch.java
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   └── MusicTouchServiceImpl.java
│   │   │   └── IMusicTouchService.java
│   │   ├── role
│   │   │   ├── controller
│   │   │   │   └── RoleController.java
│   │   │   ├── dao
│   │   │   │   └── IRoleDao.java
│   │   │   ├── pojo
│   │   │   │   ├── Relation.java
│   │   │   │   ├── RelationVo.java
│   │   │   │   └── Role.java
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   └── RoleServiceImpl.java
│   │   │   └── IRoleService.java
│   │   └── user
│   │   ├── controller
│   │   │   ├── LoginController.java
│   │   │   └── UserController.java
│   │   ├── dao
│   │   │   └── IUserDao.java
│   │   ├── pojo
│   │   │   ├── User.java
│   │   │   └── UserVo.java
│   │   └── service
│   │   ├── impl
│   │   │   └── UserServiceImpl.java
│   │   └── IUserService.java
│   ├── resources
│   │   ├── applicationContext.xml
│   │   ├── config.properties
│   │   ├── jdbc.properties
│   │   ├── log4j.properties
│   │   ├── mapper
│   │   │   ├── attach
│   │   │   │   └── Attach.xml
│   │   │   ├── cache
│   │   │   │   └── Cache.xml
│   │   │   ├── menu
│   │   │   │   └── MenuMapper.xml
│   │   │   ├── music_home
│   │   │   │   └── Audio.xml
│   │   │   ├── music_touch
│   │   │   │   └── MusicTouch.xml
│   │   │   ├── role
│   │   │   │   └── Role.xml
│   │   │   └── user
│   │   │   └── UserMapper.xml
│   │   ├── mybatis-config.xml
│   │   └── spring
│   │   └── spring-servlet.xml
│   └── webapp
│   ├── common
│   │   ├── css
│   │   │   ├── 404
│   │   │   │   └── dandelion.css
│   │   │   ├── bootstrap
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-table.css
│   │   │   │   └── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   ├── dialog
│   │   │   │   ├── dialog.css
│   │   │   │   ├── farbtastic.css
│   │   │   │   └── global.css
│   │   │   ├── jPlayer
│   │   │   │   └── jplayer.flat.css
│   │   │   ├── jquery
│   │   │   │   └── tree
│   │   │   │   └── nestable.css
│   │   │   ├── login
│   │   │   │   └── login.css
│   │   │   ├── main
│   │   │   │   ├── animate.css
│   │   │   │   ├── app.css
│   │   │   │   ├── font-awesome.min.css
│   │   │   │   ├── font.css
│   │   │   │   └── simple-line-icons.css
│   │   │   └── upload
│   │   │   ├── fileinput.css
│   │   │   └── fileinput.min.css
│   │   ├── fonts
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.svg
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   ├── fontawesome-webfont.woff
│   │   │   ├── Simple-Line-Icons.dev.svg
│   │   │   ├── Simple-Line-Icons.eot
│   │   │   ├── Simple-Line-Icons.svg
│   │   │   ├── Simple-Line-Icons.ttf
│   │   │   ├── Simple-Line-Icons.woff
│   │   │   └── sourcesanspro
│   │   │   ├── sourcesanspro-bold.woff
│   │   │   ├── sourcesanspro-light.woff
│   │   │   └── sourcesanspro.woff
│   │   ├── img
│   │   │   ├── 404
│   │   │   │   ├── blueprint.png
│   │   │   │   ├── carbon.png
│   │   │   │   ├── default.png
│   │   │   │   ├── error-hanger.png
│   │   │   │   └── error-pin.png
│   │   │   ├── dialgo
│   │   │   │   ├── marker.png
│   │   │   │   ├── mask.png
│   │   │   │   └── wheel.png
│   │   │   ├── login
│   │   │   │   └── background.png
│   │   │   ├── main
│   │   │   │   ├── a.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── m0.jpg
│   │   │   │   └── p.jpg
│   │   │   └── upload
│   │   │   ├── loading.gif
│   │   │   └── loading-sm.gif
│   │   └── js
│   │   ├── angular
│   │   │   └── angular.js
│   │   ├── aop.js
│   │   ├── app
│   │   │   ├── app.js
│   │   │   └── app.plugin.js
│   │   ├── app.js
│   │   ├── bootstrap
│   │   │   ├── bootstrap.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── bootstrap-table.js
│   │   │   └── bootstrap-table-zh-CN.js
│   │   ├── dialog
│   │   │   ├── dialog.js
│   │   │   └── farbtastic.js
│   │   ├── index.js
│   │   ├── jquery
│   │   │   ├── jplayer.playlist.min.js
│   │   │   ├── jquery-2.2.3.min.js
│   │   │   ├── jquery.jplayer.min.js
│   │   │   ├── jquery-ui-1.10.3.custom.min.js
│   │   │   ├── jquery.ui.touch-punch.min.js
│   │   │   └── tree
│   │   │   ├── jquery.nestable.js
│   │   │   └── tree.js
│   │   ├── main.js
│   │   ├── menu
│   │   │   └── menu_security.js
│   │   ├── require
│   │   │   ├── require.js
│   │   │   └── require.min.js
│   │   ├── slimscroll
│   │   │   └── jquery.slimscroll.min.js
│   │   ├── upload
│   │   │   ├── fileinput.js
│   │   │   ├── fileinput_locale_zh.js
│   │   │   └── fileinput.min.js
│   │   └── utils
│   │   ├── cookie.js
│   │   ├── formjson.js
│   │   ├── message.js
│   │   └── table.js
│   ├── index.html
│   ├── index.jsp
│   ├── page
│   │   ├── menu
│   │   │   ├── addMenu.html
│   │   │   ├── addMenuSecurity.html
│   │   │   ├── detailMenu.html
│   │   │   ├── editMenu.html
│   │   │   ├── menuList.html
│   │   │   ├── menuQianyi.html
│   │   │   └── menuSecurity.html
│   │   ├── music
│   │   │   ├── find
│   │   │   │   └── find.html
│   │   │   ├── home
│   │   │   │   ├── addAudio.html
│   │   │   │   ├── audioList.html
│   │   │   │   └── editAudio.html
│   │   │   └── touch
│   │   │   ├── addTouch.html
│   │   │   ├── detailTouch.html
│   │   │   ├── editTouch.html
│   │   │   └── touchList.html
│   │   ├── role
│   │   │   ├── addRole.html
│   │   │   ├── bindUser.html
│   │   │   ├── detailRole.html
│   │   │   ├── editRole.html
│   │   │   └── roleList.html
│   │   ├── system
│   │   │   ├── bpm_footer.html
│   │   │   ├── bpm_head.html
│   │   │   ├── bpm_left_footer.html
│   │   │   ├── bpm_left_main.html
│   │   │   ├── bpm_main.html
│   │   │   ├── bpm_right_footer.html
│   │   │   ├── bpm_right_main.html
│   │   │   └── lock_screen.html
│   │   └── user
│   │   ├── addUser.html
│   │   ├── detailUser.html
│   │   ├── editUser.html
│   │   └── userList.html
│   └── WEB-INF
│   ├── lib
│   │   ├── ojdbc14.jar
│   │   └── slf4j-log4j12-1.6.1.jar
│   ├── page
│   │   ├── error
│   │   │   └── 404.html
│   │   ├── login
│   │   │   └── login.html
│   │   └── main.html
│   └── web.xml
└── target
├── classes
│   ├── applicationContext.xml
│   ├── com
│   │   ├── common
│   │   │   ├── attach
│   │   │   │   ├── controller
│   │   │   │   │   └── Attachontroller.class
│   │   │   │   ├── dao
│   │   │   │   │   └── IAttachDao.class
│   │   │   │   ├── pojo
│   │   │   │   │   └── Attach.class
│   │   │   │   └── service
│   │   │   │   ├── IAttachService.class
│   │   │   │   └── impl
│   │   │   │   └── AttachServiceImpl.class
│   │   │   ├── base
│   │   │   │   ├── BaseController.class
│   │   │   │   ├── BaseServiceImpl.class
│   │   │   │   ├── dto
│   │   │   │   │   ├── Base.class
│   │   │   │   │   ├── PageInfo.class
│   │   │   │   │   ├── ResultVO.class
│   │   │   │   │   └── TreeVo.class
│   │   │   │   ├── IBaseDao.class
│   │   │   │   ├── IBaseService.class
│   │   │   │   └── Interceptor.class
│   │   │   ├── cache
│   │   │   │   ├── ConfCache.class
│   │   │   │   ├── controller
│   │   │   │   │   └── CacheController.class
│   │   │   │   ├── dao
│   │   │   │   │   └── ICacheDao.class
│   │   │   │   └── service
│   │   │   │   ├── ICacheService.class
│   │   │   │   └── impl
│   │   │   │   └── CacheServiceImpl.class
│   │   │   ├── Common.class
│   │   │   └── utils
│   │   │   └── StringUtils.class
│   │   ├── RandomValidateCode.class
│   │   └── system
│   │   ├── menu
│   │   │   ├── controller
│   │   │   │   └── MenuController.class
│   │   │   ├── dao
│   │   │   │   └── IMenuDao.class
│   │   │   ├── pojo
│   │   │   │   ├── Menu.class
│   │   │   │   ├── MenuSecurity.class
│   │   │   │   └── MenuVo.class
│   │   │   └── service
│   │   │   ├── IMenuService.class
│   │   │   └── impl
│   │   │   └── MenuServiceImpl.class
│   │   ├── music_home
│   │   │   ├── controller
│   │   │   │   └── AudioController.class
│   │   │   ├── dao
│   │   │   │   └── IAudioDao.class
│   │   │   ├── pojo
│   │   │   │   ├── Audio.class
│   │   │   │   └── AudioVo.class
│   │   │   └── service
│   │   │   ├── IAudioService.class
│   │   │   └── impl
│   │   │   └── AudioServiceImpl.class
│   │   ├── music_touch
│   │   │   ├── controller
│   │   │   │   └── MusicTouchController.class
│   │   │   ├── dao
│   │   │   │   └── IMusicTouchDao.class
│   │   │   ├── pojo
│   │   │   │   └── MusicTouch.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   └── MusicTouchServiceImpl.class
│   │   │   └── IMusicTouchService.class
│   │   ├── role
│   │   │   ├── controller
│   │   │   │   └── RoleController.class
│   │   │   ├── dao
│   │   │   │   └── IRoleDao.class
│   │   │   ├── pojo
│   │   │   │   ├── Relation.class
│   │   │   │   ├── RelationVo.class
│   │   │   │   └── Role.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   └── RoleServiceImpl.class
│   │   │   └── IRoleService.class
│   │   └── user
│   │   ├── controller
│   │   │   ├── LoginController.class
│   │   │   └── UserController.class
│   │   ├── dao
│   │   │   └── IUserDao.class
│   │   ├── pojo
│   │   │   ├── User.class
│   │   │   └── UserVo.class
│   │   └── service
│   │   ├── impl
│   │   │   └── UserServiceImpl.class
│   │   └── IUserService.class
│   ├── config.properties
│   ├── jdbc.properties
│   ├── log4j.properties
│   ├── mapper
│   │   ├── attach
│   │   │   └── Attach.xml
│   │   ├── cache
│   │   │   └── Cache.xml
│   │   ├── menu
│   │   │   └── MenuMapper.xml
│   │   ├── music_home
│   │   │   └── Audio.xml
│   │   ├── music_touch
│   │   │   └── MusicTouch.xml
│   │   ├── role
│   │   │   └── Role.xml
│   │   └── user
│   │   └── UserMapper.xml
│   ├── mybatis-config.xml
│   └── spring
│   └── spring-servlet.xml
└── projectTest0002
├── common
│   ├── css
│   │   ├── 404
│   │   │   └── dandelion.css
│   │   ├── bootstrap
│   │   │   ├── bootstrap.css
│   │   │   ├── bootstrap.min.css
│   │   │   ├── bootstrap-table.css
│   │   │   └── fonts
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   └── glyphicons-halflings-regular.woff
│   │   ├── dialog
│   │   │   ├── dialog.css
│   │   │   ├── farbtastic.css
│   │   │   └── global.css
│   │   ├── jPlayer
│   │   │   └── jplayer.flat.css
│   │   ├── jquery
│   │   │   └── tree
│   │   │   └── nestable.css
│   │   ├── login
│   │   │   └── login.css
│   │   ├── main
│   │   │   ├── animate.css
│   │   │   ├── app.css
│   │   │   ├── font-awesome.min.css
│   │   │   ├── font.css
│   │   │   └── simple-line-icons.css
│   │   └── upload
│   │   ├── fileinput.css
│   │   └── fileinput.min.css
│   ├── fonts
│   │   ├── FontAwesome.otf
│   │   ├── fontawesome-webfont.eot
│   │   ├── fontawesome-webfont.svg
│   │   ├── fontawesome-webfont.ttf
│   │   ├── fontawesome-webfont.woff
│   │   ├── Simple-Line-Icons.dev.svg
│   │   ├── Simple-Line-Icons.eot
│   │   ├── Simple-Line-Icons.svg
│   │   ├── Simple-Line-Icons.ttf
│   │   ├── Simple-Line-Icons.woff
│   │   └── sourcesanspro
│   │   ├── sourcesanspro-bold.woff
│   │   ├── sourcesanspro-light.woff
│   │   └── sourcesanspro.woff
│   ├── img
│   │   ├── 404
│   │   │   ├── blueprint.png
│   │   │   ├── carbon.png
│   │   │   ├── default.png
│   │   │   ├── error-hanger.png
│   │   │   └── error-pin.png
│   │   ├── dialgo
│   │   │   ├── marker.png
│   │   │   ├── mask.png
│   │   │   └── wheel.png
│   │   ├── login
│   │   │   └── background.png
│   │   ├── main
│   │   │   ├── a.png
│   │   │   ├── logo.png
│   │   │   ├── m0.jpg
│   │   │   └── p.jpg
│   │   └── upload
│   │   ├── loading.gif
│   │   └── loading-sm.gif
│   └── js
│   ├── angular
│   │   └── angular.js
│   ├── aop.js
│   ├── app
│   │   ├── app.js
│   │   └── app.plugin.js
│   ├── app.js
│   ├── bootstrap
│   │   ├── bootstrap.js
│   │   ├── bootstrap.min.js
│   │   ├── bootstrap-table.js
│   │   └── bootstrap-table-zh-CN.js
│   ├── dialog
│   │   ├── dialog.js
│   │   └── farbtastic.js
│   ├── index.js
│   ├── jquery
│   │   ├── jplayer.playlist.min.js
│   │   ├── jquery-2.2.3.min.js
│   │   ├── jquery.jplayer.min.js
│   │   ├── jquery-ui-1.10.3.custom.min.js
│   │   ├── jquery.ui.touch-punch.min.js
│   │   └── tree
│   │   ├── jquery.nestable.js
│   │   └── tree.js
│   ├── main.js
│   ├── menu
│   │   └── menu_security.js
│   ├── require
│   │   ├── require.js
│   │   └── require.min.js
│   ├── slimscroll
│   │   └── jquery.slimscroll.min.js
│   ├── upload
│   │   ├── fileinput.js
│   │   ├── fileinput_locale_zh.js
│   │   └── fileinput.min.js
│   └── utils
│   ├── cookie.js
│   ├── formjson.js
│   ├── message.js
│   └── table.js
├── index.html
├── index.jsp
├── META-INF
│   └── MANIFEST.MF
├── page
│   ├── menu
│   │   ├── addMenu.html
│   │   ├── addMenuSecurity.html
│   │   ├── detailMenu.html
│   │   ├── editMenu.html
│   │   ├── menuList.html
│   │   ├── menuQianyi.html
│   │   └── menuSecurity.html
│   ├── music
│   │   ├── home
│   │   │   ├── addAudio.html
│   │   │   ├── audioList.html
│   │   │   └── editAudio.html
│   │   └── touch
│   │   ├── addTouch.html
│   │   ├── detailTouch.html
│   │   ├── editTouch.html
│   │   └── touchList.html
│   ├── role
│   │   ├── addRole.html
│   │   ├── bindUser.html
│   │   ├── detailRole.html
│   │   ├── editRole.html
│   │   └── roleList.html
│   ├── system
│   │   ├── bpm_footer.html
│   │   ├── bpm_head.html
│   │   ├── bpm_left_footer.html
│   │   ├── bpm_left_main.html
│   │   ├── bpm_main.html
│   │   ├── bpm_right_footer.html
│   │   ├── bpm_right_main.html
│   │   └── lock_screen.html
│   └── user
│   ├── addUser.html
│   ├── detailUser.html
│   ├── editUser.html
│   └── userList.html
└── WEB-INF
├── classes
│   ├── applicationContext.xml
│   ├── com
│   │   ├── common
│   │   │   ├── attach
│   │   │   │   ├── controller
│   │   │   │   │   └── Attachontroller.class
│   │   │   │   ├── dao
│   │   │   │   │   └── IAttachDao.class
│   │   │   │   ├── pojo
│   │   │   │   │   └── Attach.class
│   │   │   │   └── service
│   │   │   │   ├── IAttachService.class
│   │   │   │   └── impl
│   │   │   │   └── AttachServiceImpl.class
│   │   │   ├── base
│   │   │   │   ├── BaseController.class
│   │   │   │   ├── BaseServiceImpl.class
│   │   │   │   ├── dto
│   │   │   │   │   ├── Base.class
│   │   │   │   │   ├── PageInfo.class
│   │   │   │   │   ├── ResultVO.class
│   │   │   │   │   └── TreeVo.class
│   │   │   │   ├── IBaseDao.class
│   │   │   │   ├── IBaseService.class
│   │   │   │   └── Interceptor.class
│   │   │   ├── cache
│   │   │   │   ├── ConfCache.class
│   │   │   │   ├── controller
│   │   │   │   │   └── CacheController.class
│   │   │   │   ├── dao
│   │   │   │   │   └── ICacheDao.class
│   │   │   │   └── service
│   │   │   │   ├── ICacheService.class
│   │   │   │   └── impl
│   │   │   │   └── CacheServiceImpl.class
│   │   │   ├── Common.class
│   │   │   └── utils
│   │   │   └── StringUtils.class
│   │   ├── RandomValidateCode.class
│   │   └── system
│   │   ├── menu
│   │   │   ├── controller
│   │   │   │   └── MenuController.class
│   │   │   ├── dao
│   │   │   │   └── IMenuDao.class
│   │   │   ├── pojo
│   │   │   │   ├── Menu.class
│   │   │   │   ├── MenuSecurity.class
│   │   │   │   └── MenuVo.class
│   │   │   └── service
│   │   │   ├── IMenuService.class
│   │   │   └── impl
│   │   │   └── MenuServiceImpl.class
│   │   ├── music_home
│   │   │   ├── controller
│   │   │   │   └── AudioController.class
│   │   │   ├── dao
│   │   │   │   └── IAudioDao.class
│   │   │   ├── pojo
│   │   │   │   ├── Audio.class
│   │   │   │   └── AudioVo.class
│   │   │   └── service
│   │   │   ├── IAudioService.class
│   │   │   └── impl
│   │   │   └── AudioServiceImpl.class
│   │   ├── music_touch
│   │   │   ├── controller
│   │   │   │   └── MusicTouchController.class
│   │   │   ├── dao
│   │   │   │   └── IMusicTouchDao.class
│   │   │   ├── pojo
│   │   │   │   └── MusicTouch.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   └── MusicTouchServiceImpl.class
│   │   │   └── IMusicTouchService.class
│   │   ├── role
│   │   │   ├── controller
│   │   │   │   └── RoleController.class
│   │   │   ├── dao
│   │   │   │   └── IRoleDao.class
│   │   │   ├── pojo
│   │   │   │   ├── Relation.class
│   │   │   │   ├── RelationVo.class
│   │   │   │   └── Role.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   └── RoleServiceImpl.class
│   │   │   └── IRoleService.class
│   │   └── user
│   │   ├── controller
│   │   │   ├── LoginController.class
│   │   │   └── UserController.class
│   │   ├── dao
│   │   │   └── IUserDao.class
│   │   ├── pojo
│   │   │   ├── User.class
│   │   │   └── UserVo.class
│   │   └── service
│   │   ├── impl
│   │   │   └── UserServiceImpl.class
│   │   └── IUserService.class
│   ├── config.properties
│   ├── jdbc.properties
│   ├── log4j.properties
│   ├── mapper
│   │   ├── attach
│   │   │   └── Attach.xml
│   │   ├── cache
│   │   │   └── Cache.xml
│   │   ├── menu
│   │   │   └── MenuMapper.xml
│   │   ├── music_home
│   │   │   └── Audio.xml
│   │   ├── music_touch
│   │   │   └── MusicTouch.xml
│   │   ├── role
│   │   │   └── Role.xml
│   │   └── user
│   │   └── UserMapper.xml
│   ├── mybatis-config.xml
│   ├── redis.properties
│   └── spring
│   └── spring-servlet.xml
├── lib
│   ├── aopalliance-1.0.jar
│   ├── asm-3.3.1.jar
│   ├── aspectjweaver-1.8.6.jar
│   ├── c3p0-0.9.1.2.jar
│   ├── cglib-2.2.2.jar
│   ├── commons-fileupload-1.3.1.jar
│   ├── commons-io-2.2.jar
│   ├── commons-logging-1.2.jar
│   ├── fastjson-1.1.33.jar
│   ├── itextpdf-5.5.10.jar
│   ├── jackson-annotations-2.8.0.jar
│   ├── javaee-api-5.jar
│   ├── javassist-3.17.1-GA.jar
│   ├── log4j-1.2.14.jar
│   ├── log4j-1.2.16.jar
│   ├── mybatis-3.2.2.jar
│   ├── mybatis-spring-1.3.0.jar
│   ├── mysql-connector-java-5.1.6.jar
│   ├── ojdbc14.jar
│   ├── slf4j-api-1.6.1.jar
│   ├── slf4j-log4j12-1.6.1.jar
│   ├── spring-aop-4.2.2.RELEASE.jar
│   ├── spring-aspects-4.2.1.RELEASE.jar
│   ├── spring-beans-4.2.2.RELEASE.jar
│   ├── spring-context-4.2.2.RELEASE.jar
│   ├── spring-context-support-4.1.9.RELEASE.jar
│   ├── spring-core-4.2.2.RELEASE.jar
│   ├── spring-expression-4.2.2.RELEASE.jar
│   ├── spring-jdbc-4.2.5.RELEASE.jar
│   ├── spring-test-4.1.9.RELEASE.jar
│   ├── spring-tx-4.1.9.RELEASE.jar
│   ├── spring-web-4.1.9.RELEASE.jar
│   └── spring-webmvc-4.1.9.RELEASE.jar
├── page
│   ├── error
│   │   └── 404.html
│   ├── login
│   │   └── login.html
│   └── main.html
└── web.xml

270 directories, 475 files

标签:

实例下载地址

idea实现SSM+bootstrap(包换部分缓存及菜单权限)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警