关于Shiro的标签应用

简介: 关于Shiro的标签应用

Jsp页面添加:<%@ taglib uri="http://shiro.apache.org/tags" prefix="shiro" %>

<shiro:authenticated> 登录之后  
<shiro:notAuthenticated> 不在登录状态时  
<shiro:guest> 用户在没有RememberMe时  
<shiro:user> 用户在RememberMe时  
<shiro:hasAnyRoles name="abc,123" > 在有abc或者123角色时  
<shiro:hasRole name="abc"> 拥有角色abc  
<shiro:lacksRole name="abc"> 没有角色abc  
<shiro:hasPermission name="abc"> 拥有权限abc  
<shiro:lacksPermission name="abc"> 没有权限abc  
<shiro:principal> 显示用户登录名 

权限标签

  • guest标签
  <shiro:guest>
  </shiro:guest>
  用户没有身份验证时显示相应信息,即游客访问信息。
  • user标签
  <shiro:user>  
  </shiro:user>
  用户已经身份验证/记住我登录后显示相应的信息。
  • authenticated标签
  <shiro:authenticated>  
  </shiro:authenticated>
  用户已经身份验证通过,即Subject.login登录成功,不是记住我登录的。
  • notAuthenticated标签
  <shiro:notAuthenticated>  
  </shiro:notAuthenticated>
  用户已经身份验证通过,即没有调用Subject.login进行登录,包括记住我自动登录的也属于未进行身份验证。
  • principal标签
  <shiro: principal/>  
  <shiro:principal property="username"/>
  相当于((User)Subject.getPrincipals()).getUsername()。
  • lacksPermission标签
  <shiro:lacksPermission name="org:create"> 
  </shiro:lacksPermission>
  如果当前Subject没有权限将显示body体内容。
  • hasRole标签
  <shiro:hasRole name="admin">  
  </shiro:hasRole>
  如果当前Subject有角色将显示body体内容。
  • hasAnyRoles标签
  <shiro:hasAnyRoles name="admin,user">   
  </shiro:hasAnyRoles>
  如果当前Subject有任意一个角色(或的关系)将显示body体内容。
  • lacksRole标签
  <shiro:lacksRole name="abc">  
  </shiro:lacksRole>
  如果当前Subject没有角色将显示body体内容。
  • hasPermission标签
  <shiro:hasPermission name="user:create">  
  </shiro:hasPermission>
  如果当前Subject有权限将显示body体内容

 


相关文章
|
11月前
|
Java 数据安全/隐私保护
Shiro - JSP页面标签应用
Shiro - JSP页面标签应用
46 0
|
自然语言处理 前端开发 Java
SpringMVC表单标签
SpringMVC表单标签
|
网络安全 Apache 网络架构
Apache Shiro内置过滤器
shiro内置过滤器研究   anon org.apache.shiro.web.filter.authc.AnonymousFilter authc org.apache.shiro.
759 0
|
前端开发 JavaScript Java
SpringBoot整合Shiro,Swagger2页面样式加载不出来问题
SpringBoot整合Shiro,Swagger2页面样式加载不出来问题
515 0
SpringBoot整合Shiro,Swagger2页面样式加载不出来问题
|
安全 Java 数据库
Shiro【授权、整合Spirng、Shiro过滤器】
前言 本文主要讲解的知识点有以下: Shiro授权的方式简单介绍 与Spring整合 初始Shiro过滤器 一、Shiro授权 上一篇我们已经讲解了Shiro的认证相关的知识了,现在我们来弄Shiro的授权 Shiro授权的流程和认证的流程其实是差不多的: 1.
1417 0
|
JavaScript 数据库