每天学点Shiro-shiro标签

Posted Xpawn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每天学点Shiro-shiro标签相关的知识,希望对你有一定的参考价值。

1. JSP中引入shiro的taglib

<%@taglib prefix="shiro" uri="http://shiro.apache.org/tags" %>

2. 可用<shiro:principal/>标签标识登录用户,<shiro:hasRole name="admin">标签表示当前用户是否有admin这个角色

Welcome:<shiro:principal/><br>
<shiro:hasRole name="admin">
<a href="/shiro/page/admin.do">Admin Page</a>
</shiro:hasRole><br>
<a href="/shiro/user/logout.do">登出</a>

3. 演示

    3.1 pawn这个帐号登录时

   3.2 登出后再用admin帐号登录,如下发现多了一个 admin page的跳转链接

 

以上是关于每天学点Shiro-shiro标签的主要内容,如果未能解决你的问题,请参考以下文章

每天学点数据应用K-means聚类算法

每天学点Python之comprehensions

每天学点Python之布尔类型

每天学点Python之collections

每天学点Python之bytes

每天学点Shiro-多realm