컨트롤러에서 set한 세션값 타임리프에서 조회
- ${session.sessionTest == 'Y'}"
HttpSession session = (HttpSession)request.getSession();
session.setAttribute("sessionTest", "Y");
`
<div th:if="${session.sessionTest == 'Y'}">
</div>
'DEV > thymeleaf,Template' 카테고리의 다른 글
[html] 웹 경로 표기법 (path) : ../ ./ (0) | 2020.06.18 |
---|---|
[thymeleaf] th:style, th:styleappend (0) | 2020.06.03 |
[Thymeleaf] 타임리프 기본 문법 (0) | 2020.05.18 |
ide(이클립스 등) jsp파일 깨짐 현상 해결 (0) | 2020.04.06 |
[mustache] 머스테치 (mustache) 사용 및 문법 (0) | 2020.02.24 |