实例介绍
全注解 spring boot +spring security + thymeleaf+mybatis+druid+mysql+bootstrap 框架。 带数据库脚本和说明文件
【实例截图】
【核心代码】
4744302543413545012.rar
└── springbootSec
├── mvnw
├── mvnw.cmd
├── pom.xml
├── springbootdemo.sql
├── src
│ ├── main
│ │ ├── java
│ │ │ └── cn
│ │ │ └── wyzzl
│ │ │ ├── config
│ │ │ │ ├── mvc
│ │ │ │ │ └── WebMvcConfig.java
│ │ │ │ ├── mybatis
│ │ │ │ │ └── MybatisConfig.java
│ │ │ │ └── sec
│ │ │ │ ├── CustomUserService.java
│ │ │ │ └── WebSecurityConfig.java
│ │ │ ├── druid
│ │ │ │ ├── DruidDataSourceConfig.java
│ │ │ │ ├── DruidStatFilter.java
│ │ │ │ └── DruidStatViewServlet.java
│ │ │ ├── moudles
│ │ │ │ └── sys
│ │ │ │ ├── action
│ │ │ │ │ └── LoginController.java
│ │ │ │ ├── entity
│ │ │ │ │ ├── SysRole.java
│ │ │ │ │ └── SysUser.java
│ │ │ │ ├── mapper
│ │ │ │ │ ├── SysRoleMapper.java
│ │ │ │ │ └── UserMapper.java
│ │ │ │ └── service
│ │ │ │ └── UserServiceImpl.java
│ │ │ ├── SpringbootSecApplication.java
│ │ │ └── util
│ │ │ └── MD5Util.java
│ │ └── resources
│ │ ├── application.properties
│ │ ├── static
│ │ │ ├── bootstrap
│ │ │ │ ├── 2.3.1
│ │ │ │ │ ├── awesome
│ │ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ │ ├── font-awesome-ie7.css
│ │ │ │ │ │ ├── font-awesome-ie7.min.css
│ │ │ │ │ │ └── font-awesome.min.css
│ │ │ │ │ ├── css_cerulean
│ │ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ └── thumbnail.png
│ │ │ │ │ ├── css_default
│ │ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ ├── bootstrap-responsive.css
│ │ │ │ │ │ └── bootstrap-responsive.min.css
│ │ │ │ │ ├── css_flat
│ │ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ ├── bootstrap-responsive.css
│ │ │ │ │ │ └── bootstrap-responsive.min.css
│ │ │ │ │ ├── css_readable
│ │ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ └── thumbnail.png
│ │ │ │ │ ├── css_united
│ │ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ └── thumbnail.png
│ │ │ │ │ ├── docs
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ │ │ │ ├── bootstrap-responsive.css
│ │ │ │ │ │ │ │ └── docs.css
│ │ │ │ │ │ │ ├── ico
│ │ │ │ │ │ │ │ ├── apple-touch-icon-114-precomposed.png
│ │ │ │ │ │ │ │ ├── apple-touch-icon-144-precomposed.png
│ │ │ │ │ │ │ │ ├── apple-touch-icon-57-precomposed.png
│ │ │ │ │ │ │ │ ├── apple-touch-icon-72-precomposed.png
│ │ │ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ │ │ └── favicon.png
│ │ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ │ ├── bootstrap-docs-readme.png
│ │ │ │ │ │ │ │ ├── bootstrap-mdo-sfmoma-01.jpg
│ │ │ │ │ │ │ │ ├── bootstrap-mdo-sfmoma-02.jpg
│ │ │ │ │ │ │ │ ├── bootstrap-mdo-sfmoma-03.jpg
│ │ │ │ │ │ │ │ ├── bs-docs-bootstrap-features.png
│ │ │ │ │ │ │ │ ├── bs-docs-masthead-pattern.png
│ │ │ │ │ │ │ │ ├── bs-docs-responsive-illustrations.png
│ │ │ │ │ │ │ │ ├── bs-docs-twitter-github.png
│ │ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ │ ├── bootstrap-example-carousel.png
│ │ │ │ │ │ │ │ │ ├── bootstrap-example-fluid.png
│ │ │ │ │ │ │ │ │ ├── bootstrap-example-justified-nav.png
│ │ │ │ │ │ │ │ │ ├── bootstrap-example-marketing-narrow.png
│ │ │ │ │ │ │ │ │ ├── bootstrap-example-marketing.png
│ │ │ │ │ │ │ │ │ ├── bootstrap-example-signin.png
│ │ │ │ │ │ │ │ │ ├── bootstrap-example-starter.png
│ │ │ │ │ │ │ │ │ ├── bootstrap-example-sticky-footer.png
│ │ │ │ │ │ │ │ │ ├── browser-icon-chrome.png
│ │ │ │ │ │ │ │ │ ├── browser-icon-firefox.png
│ │ │ │ │ │ │ │ │ ├── browser-icon-safari.png
│ │ │ │ │ │ │ │ │ ├── slide-01.jpg
│ │ │ │ │ │ │ │ │ ├── slide-02.jpg
│ │ │ │ │ │ │ │ │ └── slide-03.jpg
│ │ │ │ │ │ │ │ ├── example-sites
│ │ │ │ │ │ │ │ │ ├── 8020select.png
│ │ │ │ │ │ │ │ │ ├── adoptahydrant.png
│ │ │ │ │ │ │ │ │ ├── breakingnews.png
│ │ │ │ │ │ │ │ │ ├── fleetio.png
│ │ │ │ │ │ │ │ │ ├── gathercontent.png
│ │ │ │ │ │ │ │ │ ├── jshint.png
│ │ │ │ │ │ │ │ │ ├── kippt.png
│ │ │ │ │ │ │ │ │ └── soundready.png
│ │ │ │ │ │ │ │ ├── glyphicons-halflings.png
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-white.png
│ │ │ │ │ │ │ │ ├── grid-baseline-20px.png
│ │ │ │ │ │ │ │ ├── less-logo-large.png
│ │ │ │ │ │ │ │ └── responsive-illustrations.png
│ │ │ │ │ │ │ └── js
│ │ │ │ │ │ │ ├── application.js
│ │ │ │ │ │ │ ├── bootstrap-affix.js
│ │ │ │ │ │ │ ├── bootstrap-alert.js
│ │ │ │ │ │ │ ├── bootstrap-button.js
│ │ │ │ │ │ │ ├── bootstrap-carousel.js
│ │ │ │ │ │ │ ├── bootstrap-collapse.js
│ │ │ │ │ │ │ ├── bootstrap-dropdown.js
│ │ │ │ │ │ │ ├── bootstrap.js
│ │ │ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ │ │ ├── bootstrap-modal.js
│ │ │ │ │ │ │ ├── bootstrap-popover.js
│ │ │ │ │ │ │ ├── bootstrap-scrollspy.js
│ │ │ │ │ │ │ ├── bootstrap-tab.js
│ │ │ │ │ │ │ ├── bootstrap-tooltip.js
│ │ │ │ │ │ │ ├── bootstrap-transition.js
│ │ │ │ │ │ │ ├── bootstrap-typeahead.js
│ │ │ │ │ │ │ ├── google-code-prettify
│ │ │ │ │ │ │ │ ├── prettify.css
│ │ │ │ │ │ │ │ └── prettify.js
│ │ │ │ │ │ │ ├── holder
│ │ │ │ │ │ │ │ └── holder.js
│ │ │ │ │ │ │ ├── html5shiv.js
│ │ │ │ │ │ │ ├── jquery.js
│ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ ├── base-css.html
│ │ │ │ │ │ ├── components.html
│ │ │ │ │ │ ├── customize.html
│ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ ├── carousel.html
│ │ │ │ │ │ │ ├── fluid.html
│ │ │ │ │ │ │ ├── hero.html
│ │ │ │ │ │ │ ├── justified-nav.html
│ │ │ │ │ │ │ ├── marketing-narrow.html
│ │ │ │ │ │ │ ├── signin.html
│ │ │ │ │ │ │ ├── starter-template.html
│ │ │ │ │ │ │ ├── sticky-footer.html
│ │ │ │ │ │ │ └── sticky-footer-navbar.html
│ │ │ │ │ │ ├── extend.html
│ │ │ │ │ │ ├── getting-started.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── javascript.html
│ │ │ │ │ │ ├── scaffolding.html
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ ├── layout.mustache
│ │ │ │ │ │ └── pages
│ │ │ │ │ │ ├── base-css.mustache
│ │ │ │ │ │ ├── components.mustache
│ │ │ │ │ │ ├── customize.mustache
│ │ │ │ │ │ ├── extend.mustache
│ │ │ │ │ │ ├── getting-started.mustache
│ │ │ │ │ │ ├── index.mustache
│ │ │ │ │ │ ├── javascript.mustache
│ │ │ │ │ │ └── scaffolding.mustache
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ │ └── fontawesome-webfont.woff
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── glyphicons-halflings.png
│ │ │ │ │ │ └── glyphicons-halflings-white.png
│ │ │ │ │ └── js
│ │ │ │ │ ├── bootstrap.js
│ │ │ │ │ └── bootstrap.min.js
│ │ │ │ └── bsie
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap-ie6.css
│ │ │ │ │ ├── bootstrap-ie6.min.css
│ │ │ │ │ └── bootstrap-ie6.old.css
│ │ │ │ ├── img
│ │ │ │ │ ├── glyphicons-halflings.gif
│ │ │ │ │ └── glyphicons-halflings-white.gif
│ │ │ │ └── js
│ │ │ │ ├── bootstrap-ie.js
│ │ │ │ ├── bootstrap-ie.min.js
│ │ │ │ └── bootstrap-ie.old.js
│ │ │ └── jquery
│ │ │ ├── jquery-1.9.1.js
│ │ │ ├── jquery-1.9.1.min.js
│ │ │ ├── jquery-migrate-1.1.1.js
│ │ │ └── jquery-migrate-1.1.1.min.js
│ │ └── templates
│ │ ├── login.html
│ │ └── success.html
│ ├── test
│ │ └── java
│ │ └── cn
│ │ └── wyzzl
│ └── webapp
│ └── WEB-INF
│ └── jsp
│ ├── helloJsp.jsp
│ └── success.jsp
├── target
└── 说明.txt
58 directories, 159 files
标签:
全注解 spring boot +spring security + mybatis+druid+thymeleaf+mysql...
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论