我已经为安全性添加了所有必需的库和依赖项,并且应用程序正在为单个角色&任何角色案例
单:
<security:intercept-url pattern="/**" access="hasRole('enabled')" />
任何角色
<security:intercept-url pattern="/**" access="hasAnyRole('enabled','view')" />
是否可以使用表达式检查多个(AND或All Roles)角色?
答案 0 :(得分:0)
<security:intercept-url pattern="/**" access="hasRole('enabled') and hasRole('view')" />