web-dev-qa-db-ja.com

春のセキュリティtaglibでhasRole( 'ROLE_ADMIN')について言及しない方法

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>
20
Dileepa
<sec:authorize access="!hasRole('ROLE_ADMIN')">
   <div> show these for only non admins </div>
</sec:authorize>
46
Frederic Close