spring boot整合spring security笔记
最近自己做了一个小项目,正在进行springboot和spring Security的整合,有一丢丢的感悟,在这里分享一下: 首先,spring boot整合spring security最好是使用Thymleaf,因为spring boot官方支持使用thymleaf,这样的话,整合起来会方便很多,而且,thymleaf也支持静态加载,比jsp方便许多。那么: 第一步:需要先引入thymleafh和spring security的依赖(如果是web项目需要引入对应的jar包) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> 第二步:在java配置类中去对spring security进行配置(也可以在xml中进行配置, 不过,spring boot比较推荐在代码中进行配置,所以顺势而为了,就在代码中 进行配置) /** *