如何使用Spring Boot with Spring Security和Thymeleaf根据身份验证状态过滤html内容? 注意:我使用的是Spring启动自动配置。
答案 0 :(得分:2)
使用Thymeleaf的Spring Security集成可以实现您的目标(如果您尚未集成这两个,请查看此link。)
例如,您可以执行以下操作:
<div sec:authorize="hasRole('ROLE_ADMIN')">
This content is only shown to administrators.
</div>
<div sec:authorize="hasRole('ROLE_USER')">
This content is only shown to users.
</div>