十、Shiro标签展示用户身份信息

十、Shiro标签展示用户身份信息

十、Shiro标签展示用户身份信息

修改index.jsp

十、Shiro标签展示用户身份信息

<%@page contentType="text/html; UTF-8%" pageEncoding="UTF-8" isELIgnored="false" %>
<%@taglib prefix="shiro" uri="http://shiro.apache.org/tags" %>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
<h1>系统主页V1.0</h1>

<h1><shiro:principal/></h1>

<shiro:authenticated>
    认证之后展示内容
</shiro:authenticated>

<shiro:notAuthenticated>
    没有认证之后展示内容
</shiro:notAuthenticated>


<a href="${pageContext.request.contextPath}/user/logout">退出登录</a>


<ul>

    <shiro:hasAnyRoles name="user,admin">
        <li><a href="">用户管理</a></li>
        <ul>

            <shiro:hasPermission name="user:add:*">
                <li><a href="">添加</a></li>
            </shiro:hasPermission>

            <shiro:hasPermission name="user:delete:*">
                <li><a href="">删除</a></li>
            </shiro:hasPermission>

            <shiro:hasPermission name="user:update:*">
                <li><a href="">修改</a></li>
            </shiro:hasPermission>

            <shiro:hasPermission name="order:find:*">
                <li><a href="">查询</a></li>
            </shiro:hasPermission>


        </ul>


    </shiro:hasAnyRoles>


    <shiro:hasRole name="admin">
        <li><a href="">商品管理</a></li>
        <li><a href="">订单管理</a></li>
        <li><a href="">物流管理</a></li>
    </shiro:hasRole>


</ul>


</body>
</html>
上一篇:SpringBoot集成shiro框架


下一篇:八、springboot缓存之Redis