本文以spring security自带的tutorial-xml demo讲解,本文由博主javacoder.cn原创,转载请注明出处!!
配置
为了实现spring security对service层方法调用的权限控制,需要在spring context添加如下配置
<global-method-security pre-post-annotations="enabled" />
启用对方法上的@PreAuthorize,@PostAuthorize等注解的支持
然后在需要控制的方法上添加PreAuthorize注解
1 2 3 4 5 |
public interface BankService { @PreAuthorize("hasRole('supervisor') or " + "hasRole('teller') and (#account.balance + #amount >= -#account.overdraft)") public Account post(Account account, double amount); } |
本注解表示要么当前用户拥有supervisor权限,要么拥有teller权限且被操作账户的扣款额在透支额度范围内。PreAuthorize的权限控制表达式为spring的EL表达式。
权限控制的callstack如下:
和基于URL权限控制的流程类似,MethodSecurityInterceptor作为认证的入口,然后调用AccessDecisionManager(实现类为AffirmativeBased)进行是否有权限访问进行抉择,在AffirmativeBased中,依然使用基于投票器(PreInvocationAuthorizationAdviceVoter)的方式进行判定,真正的PreAuthorize注解对应的表达式计算逻辑由ExpressionBasedPreInvocationAdvice完成。
Posted in: Spring Security
Comments are closed.