向不同角色顯示不同的內容
sec:authorize 屬性在屬性表示式求值為 true 時呈現其內容
<div sec:authorize="hasRole('ROLE_ADMIN')">
Content for administrators
</div>
<div sec:authorize="hasRole('ROLE_USER')">
Content for users
</div>
sec:authentication 屬性用於列印已記錄的使用者角色:
Roles: <span sec:authentication="principal.authorities">ROLE_USER, ROLE_ADMIN</span>