SpringBoot整合SpringSecurity时sec没有提示解决方法

首先看你的SpringSecurity的版本是4.X还是5.X的版本

4.X


        
            org.springframework.boot
            spring-boot-starter-security
        

        
        
            org.thymeleaf.extras
            thymeleaf-extras-springsecurity4
        

在html页面上导入名称空间



5.X


        
            org.springframework.boot
            spring-boot-starter-security
        

        
        
            org.thymeleaf.extras
            thymeleaf-extras-springsecurity5
        

在html页面上导入名称空间


 

你可能感兴趣的:(SpringBoot,SpringBoot,SpringSecurity,thymeleaf)