shiro与security前端显示当前用户的数据

无论是在使用shiro还是security都需要导入相关的依赖,就是thymeleaf整合这两个包的相关依赖和命名空间

xmlns:th="http://www.thymeleaf.org <!--thymeleaf的命名空间-->
xmlns:sec=“http://www.thymeleaf.org/thymeleaf-extras-springsecurity5” <!--security的命名空间-->
xmlns:shiro="http://www.thymeleaf.org/thymeleaf-extras-shiro"  <!--shiro的命名空间-->

shiro在前段显示用户名

依赖

<!--thymeleaf-shiro-->
<dependency>
    <groupId>com.github.theborakompanioni</groupId>
    <artifactId>thymeleaf-extras-shiro</artifactId>
    <version>2.1.0</version>
</dependency>

首先要在认证的时候把user对象传递出去。
在这里插入图片描述然后在前前端我们可以通过如下的代码来显示出我们想要的数据
其中property=“name” 中的name,对应的就是实类中的属性,如果不加property那么前端将显示这个用户的全部信息

<span shiro:principal property="name"/>

security在前端显示用户名

依赖

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

通过下边的代码就可以了

<span sec:authentication="name"></span>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值