随笔 - 478
文章 - 0
评论 - 31
阅读 -
57万
12 2019 档案
Springboot项目搭建(4)-shiro登录
摘要:参考:https://www.jianshu.com/p/7f724bec3dc3 (1)添加依赖 <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <version>1.4.
阅读全文
Springboot项目搭建(3)-整合静态文件
摘要:1,引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> 2,添加静态文件 3,修改配置文件
阅读全文
Springboot项目搭建(2)-整合数据库
摘要:源码地址:https://github.com/VioletSY/article-base 1:创建一个基本项目:https://www.cnblogs.com/excellencesy/p/12522248.html 2:整合oracle: (1)添加依赖(pom.xml): <!--jdbc -
阅读全文
springboot多模块项目打war包
摘要:一、父模块配置 1,指定pakaging:pom 2,指定编译的版本:如下图: 3,屏蔽内置的tomcat: (1)这个内置的tomcat是在spring-boot-starter-web这个start中引入的,所以说: 1)如果你的项目里面用到了这个starter(如下),就加上下面蓝色框中的代码
阅读全文
SpringBoot核心原理
摘要:1,什么是starter 2,手把手教你写starter,了解starter的实现原理 3,常见的starter之logger的前世今生 4,常见的starter之jdbc的基本应用 5,spring的另一大神器,Actuator监控 6,了解一点JMX
阅读全文