SpringBoot---spring-security配置问题

问题:导入thymeleaf-extras-springsecurity5后,前台获取不到角色。

<!--security-thymeleaf整合包-->
<dependency>
    <groupId>org.thymeleaf.extras</groupId>
    <artifactId>thymeleaf-extras-springsecurity5</artifactId>
    <version>3.0.4.RELEASE</version>
</dependency>

分析:thymeleaf-extras-springsecurity4和thymeleaf-extras-springsecurity5,存在版本问题,所以导入的命名空间也有区别。

解决:依赖版本为:thymeleaf-extras-springsecurity5时,命名空间应该为:

xmlns:sec="http://www.thymeleaf.org/extras/spring-security"

在获取角色时:应该用

<span sec:authentication="principal.authorities"></span>

而不是:

<span sec:authentication="principal.getAuthorities()"></span>

如果仍要用:thymeleaf-extras-springsecurity4版本

解决办法:降级springboot版本,2.0.9和2.0.7较为稳定。因为版本降级,所以项目其他位置的导入过的包也需要根据提示修改。

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.9.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

命名空间导入:

xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4

此时获取角色:

<span sec:authentication="principal.getAuthorities()"></span>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

记录菌

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值