DEV/thymeleaf,Template
[thymeleaf] 타임리프 세션 값 조회
꼭두새벽에비명소리
2020. 5. 28. 11:10
컨트롤러에서 set한 세션값 타임리프에서 조회
- ${session.sessionTest == 'Y'}"
HttpSession session = (HttpSession)request.getSession();
session.setAttribute("sessionTest", "Y");
`
<div th:if="${session.sessionTest == 'Y'}">
</div>