Thymeleaf 호환성 테스트 추가:
- Mvc/Form/Security/Expression 관련 템플릿 및 테스트 구현 - 의존성 검증 및 업그레이드 스크립트 추가 (Thymeleaf 3.1.5 적용)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<!doctype html>
|
||||
<html xmlns:sec="http://www.thymeleaf.org/extras/spring-security">
|
||||
<body>
|
||||
<p sec:authorize="isAnonymous()">로그인 안내</p>
|
||||
<p sec:authorize="isAuthenticated()">회원 메뉴</p>
|
||||
<p sec:authorize="hasRole('ADMIN')">관리자 메뉴</p>
|
||||
<span id="identity" sec:authorize="isAuthenticated()" sec:authentication="name"></span>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user