• Spring Security入门篇——标签sec:authorize的使用


    Security框架可以精确控制页面的一个按钮、链接,它在页面上权限的控制实际上是通过它提供的标签来做到的

    Security共有三类标签authorize authentication accesscontrollist ,第三个标签不在这里研究

    前提:项目需要引用spring-security-taglibs-3.05,jstl1.2的jar包,页面加入:<%@ taglib prefix=”sec” uri=”http://www.springframework.org/security/tags” %>

    本文配置

    一、authorize

    对应的类: org.springframework.security.taglibs.authz.AuthorizeTag

    attribute: access url method ifNotGranted ifAllGranted ifAnyGranted

    使用方式:见SimpleDemo的index.jsp

    <sec:authorize ifAllGranted="ROLE_ADMIN">#这里可以用逗号分隔,加入多个角色

    你拥有管理员权限,你可以查看 该页面 管理员进入 </sec:authorize>

    <sec:authorize url='/profile.jsp'>你登陆成功了可以看到 这个页面</sec:authorize>

    页面标签的使用与权限配置相对应

    对比可以看到只有ROLE_ADMIN角色的用户才能访问admin.jsp,通过认证的用户都可以访问profile.jsp

    从标签源码可以知道,authorize标签判断顺序是: access->url->ifNotGranted->ifAllGranted->ifAnyGranted 但他们的关系是“与”: 即只要其中任何一个属性不满足则该标签中间的内容将不会显示给用户,举个例子:

    <sec:authorize ifAllGranted=”ROLE_ADMIN,ROLE_MEMBER” ifNotGranted=”ROLE_SUPER”>满足才会显示给用户 </sec:authorize>

    标签中间的内容只有在当前用户拥有ADMIN,MEMBER角色,但不拥有SUPER权限时才会显示

    access属性是基于角色判断,url属性是基于访问路径判断,与security.xml配置对应

    对于ifAllGranted ,ifNotGranted,ifAnyGranted属性的理解可以与集合api类比

    Collection grantedAuths :当前用户拥有的权限
    Collection requiredAuths : 当前要求的权限,即ifAllGranted ,ifNotGranted,ifAnyGranted 属性的值

    满足ifAllGranted: 只需要grantedAuths.containsAll(requiredAuths);返回true即可
    满足ifAnyGranted: 只需要grantedAuths.retainAll(requiredAuths);有内容即可(两集合有交集)
    满足ifNotGranted:与Any相反,如果没有交集即可

    二、authentication

    对应的类: org.springframework.security.taglibs.authz.AuthenticationTag

    attribute: property(required) var htmlEscape scope

    使用方式:

    <sec:authentication property=’name’ />
    <sec:authentication property=’principal.username’ />
    <sec:authentication property=’principal.enabled’ />
    <sec:authentication property=’principal.accountNonLocked’ />

    主要用来显示authentication属性,

    var scope: 将property的值以var设置到scope域中

    htmlEscape: 将特殊字符转义 > –> “&gt”

  • 相关阅读:
    微信小程序开发中遇到的问题之自定义导航栏
    微信小程序调用支付时遇到的问题缺少参数:total_fee
    微信小程序开发中遇到的问题之wx.previewImage
    svg和canvas的对比
    AngularJs中使用ng-if后ng-model无效
    网站开发的性能优化
    webpack前端工程化构建工具的使用
    synchronizationContext线程同步学习
    图像处理显卡选择
    oracle 32位学习
  • 原文地址:https://www.cnblogs.com/jpfss/p/8669000.html
Copyright © 2020-2023  润新知