2012-01-13 2 views

답변

0

표시되는 내용을 확인하기위한 보안 점검과 함께 하나의 성공 페이지 JSP를 가질 수 있습니다.

예.

<security:authorize ifAnyGranted="ROLE_ADMIN"> 
<fmt:message key="welcomemessageadmin" /> 
</security:authorize> 

<security:authorize ifAnyGranted="ROLE_USER"> 
<fmt:message key="welcomemessageuser" /> 
</security:authorize> 
관련 문제