解决Spring Boot Security – Thymeleaf sec:authorize 标签不生效

今天用Spring Boot 2.1.3 + Spring Security + Thymeleaf 测试一个登录的权限控制 Demo

发现使用 

sec:authorize
sec:authentication

这两个标签不生效

下面来说一下解决方案:

1、SpringBoot 工程默认自动导入的包版本不兼容

在pom文件中导入对应的包



    org.thymeleaf.extras
    thymeleaf-extras-springsecurity4
    3.0.4.RELEASE

2、页面 标签中导入对应的命名空间

3、SpringBoot 版本问题

由于测试时发现SpringBoot版本2.1.3的标签失效

百度了一下这个问题

需要把SpringBoot 的版本调整到 2.1.X 以下


        org.springframework.boot
        spring-boot-starter-parent
        2.0.8.RELEASE
         
    

 

你可能感兴趣的:(spring,boot,thymeleaf,Spring,Security)