验证 Spring 安全中的多个角色
Validating Multiple Roles in Spring Security
我已经为安全性添加了所有必需的库和依赖项,并且该应用程序适用于单一角色和任何角色案例
单身:
<security:intercept-url pattern="/**" access="hasRole('enabled')" />
任何角色
<security:intercept-url pattern="/**" access="hasAnyRole('enabled','view')" />
有没有办法使用表达式检查多个(AND 或所有角色)角色?
<security:intercept-url pattern="/**" access="hasRole('enabled') and hasRole('view')" />
我已经为安全性添加了所有必需的库和依赖项,并且该应用程序适用于单一角色和任何角色案例
单身:
<security:intercept-url pattern="/**" access="hasRole('enabled')" />
任何角色
<security:intercept-url pattern="/**" access="hasAnyRole('enabled','view')" />
有没有办法使用表达式检查多个(AND 或所有角色)角色?
<security:intercept-url pattern="/**" access="hasRole('enabled') and hasRole('view')" />