Como mencionar não de hasRole ('ROLE_ADMIN') na taglib de segurança da primavera

Como eu escreveria a seguinte condição usando taglib de segurança 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>

questionAnswers(1)

yourAnswerToTheQuestion