java - hasrole - sec:authorize
Cómo no mencionar hasRole(''ROLE_ADMIN'') en el taglib de seguridad de spring (1)
¿Cómo escribiría después de la condición usando taglib de seguridad de primavera?
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
<sec:authorize access="not of hasRole(''ROLE_ADMIN'')">
<div> show these for only non admins </div>
</sec:authorize>
<sec:authorize access="!hasRole(''ROLE_ADMIN'')">
<div> show these for only non admins </div>
</sec:authorize>