验证Spring Security中的多个角色

时间:2015-06-01 18:20:01

标签: spring authentication spring-security authorization intercept

我已经为安全性添加了所有必需的库和依赖项,并且应用程序正在为单个角色&任何角色案例

单: <security:intercept-url pattern="/**" access="hasRole('enabled')" />

任何角色 <security:intercept-url pattern="/**" access="hasAnyRole('enabled','view')" />

是否可以使用表达式检查多个(AND或All Roles)角色?

1 个答案:

答案 0 :(得分:0)

<security:intercept-url pattern="/**" access="hasRole('enabled') and hasRole('view')" />