22

spring security taglib を使用して次の条件を記述するにはどうすればよいですか?

<%@ 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>
4

1 に答える 1

51
<sec:authorize access="!hasRole('ROLE_ADMIN')">
   <div> show these for only non admins </div>
</sec:authorize>
于 2013-10-11T05:58:00.350 に答える