spring security 服务器端方法级权限控制

配置文件


注解开启
@EnableGlobalMethodSecurity :Spring Security默认是禁用注解的,要想开启注解,需要在继承
WebSecurityConfigurerAdapter的类上加@EnableGlobalMethodSecurity注解,并在该类中将
AuthenticationManager定义为Bean。

1…JSR-250注解
开启jsr-250注解支持


@RolesAllowed 指定方法的角色名称
示例:
@RolesAllowed({“USER”, “ADMIN”}) 该方法只要具有"USER", "ADMIN"任意一种权限就可以访问。
略前缀ROLE_,实际的权限可能是ROLE_ADMIN
@PermitAll 表示允许所有的角色进行访问,也就是说不进行权限控制
@DenyAll 表示无论什么角色都不能访

2.@Secured注解
权限可能是ROLE_ADMIN,不能省略
开启secure的注解的支持


@Secured注解标注的方法进行权限控制的支持,其值默认为disabled。
示例:

@Secured("IS_AUTHENTICATED_ANONYMOUSLY")
public Account readAccount(Long id);
@Secured("ROLE_TELLER")

3.页面端标签控制权限
在jsp页面中我们可以使用spring security提供的权限标签来进行权限控制
maven导入
(spring本身带有的权限控制方法导入的依赖其实是spring security的依赖)


org.springframework.security
spring-security-taglibs
version

页面导入

<%@taglib uri="http://www.springframework.org/security/tags" prefix="security"%>

你可能感兴趣的:(spring security 服务器端方法级权限控制)