springboot
进击的小绵羊
这个作者很懒,什么都没留下…
展开
-
SpringBoot2集成Shrio需要注意的坑
配置时需要注意以下细节问题不然会发生配置不生效、302等问题 使用LinkedHashMap而不是HashMap anon必须在authc之前定义 shrio配置类: @Configuration public class ShiroConfig { /** * 配置自己的验证 * @return */ @Bean public EmployeeRealm employeeRealm() { EmployeeRealm employeeRealm = new Employ原创 2020-07-16 11:49:21 · 558 阅读 · 0 评论 -
Spring Boot项目底层原理
pom.xml文件 spring-boot-starter-parent 是当前项目的父级依赖 <!--当前项目的父依赖--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</art...原创 2020-02-09 19:39:58 · 615 阅读 · 2 评论 -
SpringBoot项目打成jar包并运行
1、在pom.xml文件添加maven插件,将以下内容添加到对应位置 <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven...原创 2020-02-09 14:25:05 · 813 阅读 · 0 评论 -
Springboot集成Druid数据库连接池
1、在【pom.xml】添加依赖 <!--druid--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.6</version> </depend...原创 2020-02-06 20:18:33 · 165 阅读 · 0 评论 -
springBoot国际化乱码
1、在application.xml配置文件中加入 messages: basename: i18n.login #国际化默认文件的位置 encoding: utf-8 #编码格式 2、file—》setting—》Editor—》File Encodings,选择UTF-8格式。 ...原创 2020-02-06 17:47:22 · 1151 阅读 · 0 评论 -
SpringBoot+Thymeleaf使用简单介绍
一、什么是【Thymeleaf】 1、1Thymeleaf介绍:SpringBoot并不推荐使用jsp,Thymeleaf 是一个跟 Velocity、FreeMarker 类似的模板引擎,它可以完全替代 JSP。 1、2Thymeleaf特点: 1、2、1动静结合: 1)Thymeleaf 在有网络和无网络的环境下皆可运行; 2)它可以让美工在浏览器查看页面的静态效果,也可以让程序员在...原创 2020-02-06 11:52:27 · 4639 阅读 · 0 评论 -
springBoot集成ssm
一使用的工具:【idea2019.3.1】+【maven】+【Mysql8.0.11】 二集成过程: 1、【new project】——》左边列表选择【maven】——》点击【next】——》按照提示填好,点击【finish】。 2、配置项目:弹出这个对话框选择【Enable Auto-Import】, 设置【maven】:,点击【apply】,点击【ok】 开启注解:,点击【appl...原创 2020-02-05 19:54:58 · 204 阅读 · 2 评论