TZ_10_spring-sucrity 服务器和页面的权限控制

Posted asndxj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TZ_10_spring-sucrity 服务器和页面的权限控制相关的知识,希望对你有一定的参考价值。

1.在服务器端我们可以通过Spring security提供的注解对方法来进行权限控制。

Spring Security在方法的权限控制上支持三种类型的注解,JSR-250注解、@Secured注解和支持表达式的注解,这三种注解默认都是没有启用的,需要单独通过global-method-security元素的对应属性进行启用

 

  1>.JSR-250注解

   配置文件开启注解

<security:global-method-security jsr250-annotations="enabled"/>

@RolesAllowed表示访问对应方法时所应该具有的角色示例:
@RolesAllowed("USER", "ADMIN") 该方法只要具有"USER", "ADMIN"任意一种权限就可以访问。这里可以省略前缀ROLE_,实际的权限可能是ROLE_ADMIN


只有带有ADMIN角色的用户才能访问
@RequestMapping("/findAllProduct")
@RolesAllowed("ADMIN") public ModelAndView findAllProduct(int page, int size) ModelAndView mode = new ModelAndView(); List<Product> productList = productService.findAll(page,size); PageInfo pageInfo = new PageInfo(productList); mode.addObject("pageInfo", pageInfo); mode.setViewName("product-list"); return mode;

 


2>@Secured注解

配置文件开启注解
 <security:global-method-security secured-annotations="enabled"/>
@Secured注解标注的方法进行权限控制的支持,其值默认为disabled
 只有带有ADMIN角色的用户才能访问
@RequestMapping("/findAllProduct")
    @Secured("ADMIN")
    public ModelAndView findAllProduct(int page, int size) 
        ModelAndView mode = new ModelAndView();
        List<Product> productList = productService.findAll(page,size);
        PageInfo pageInfo = new PageInfo(productList);
        mode.addObject("pageInfo", pageInfo);
        mode.setViewName("product-list");
        return mode;
    

 


2 页面端标签控制权限
jsp页面中我们可以使用spring security提供的权限标签来进行权限控制

1>maven
<spring.security.version>5.0.1.RELEASE</spring.security.version>
<
dependency>

    <groupId>org.springframework.security</groupId>
    <artifactId>spring-security-taglibs</artifactId>
<version>version</version>
</
dependency>

 

2>页面标签导入
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
  
  标签: authentication 获得对象的属性
<security:authentication property="" htmlEscape="" scope="" var=""/>
  
  获得当前页面对象的名字
  <sec:authentication property="principal.username"/>

  
  标签:authorize 隐藏某一个对象
  当前用户携带的角色不是ADMIN是隐藏该标签
      <sec:authorize access="hasRole(‘ADMIN‘)">
              <a
                        href="$pageContext.request.contextPath/User/findAllUser"> 
<i class="fa fa-circle-o"></i> 用户管理 </a> </sec:authorize>

 




 

以上是关于TZ_10_spring-sucrity 服务器和页面的权限控制的主要内容,如果未能解决你的问题,请参考以下文章

TZ_02MyBatis_一级缓存和二级缓存

TZ_16_Vue定义全局组件和局部组件

TZ_14_Feign的客户端和Feign的负载均衡

TZ_06_SpringMVC_拦截器的配置

TZ_16_Vue_入门案例

TZ_14_Zuul网关_过滤器