----------------------------导入了依赖
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity4</artifactId>
<version>3.0.2.RELEASE</version>
</dependency>
----------------------------也引入了命名空间
xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4
前端和控制台都没有报错,springboot版本2.1.0
sec相关的标签都能自动提示,但是使用都是无效的。
sec:authorize="hasRole('ROLE_ROOT')"也无法控制显示;无论什么值都会显示div。
慕粉4159764