Thymeleaf 호환성 테스트 추가:
eapim-portal CI / build (push) Has been cancelled
eapim-portal Test / test (push) Has been cancelled

- Mvc/Form/Security/Expression 관련 템플릿 및 테스트 구현
- 의존성 검증 및 업그레이드 스크립트 추가 (Thymeleaf 3.1.5 적용)
This commit is contained in:
Rinjae
2026-09-07 15:29:45 +09:00
parent b7869ad6e6
commit fa736a36ab
8 changed files with 514 additions and 0 deletions
@@ -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>