我想将 Spring Security 属性加载到变量中。
变量:
edit
正文中提供的布尔值POST
(加载正常)- 如果用户具有角色主管,则布尔值
isSupervisor
应该为真(我不知道如何将其加载到可访问的变量中。我尝试了许多不同的方法,但没有奏效。)
代码:
//set somehow the isSupervisor variable
//var isSupervisor = hasRole('ROLE_SUPERVISOR')
<c:if test="${edit} and not isSupervisor">
... do something
</c:if>