Files
eapim-portal/src/test/resources/templates/compatibility/security.html
T
Rinjae fa736a36ab
eapim-portal CI / build (push) Has been cancelled
eapim-portal Test / test (push) Has been cancelled
Thymeleaf 호환성 테스트 추가:
- Mvc/Form/Security/Expression 관련 템플릿 및 테스트 구현
- 의존성 검증 및 업그레이드 스크립트 추가 (Thymeleaf 3.1.5 적용)
2026-09-07 15:29:45 +09:00

10 lines
360 B
HTML

<!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>