[SPRING] Thymeleaf 템플릿에서 세션 속성에 액세스하기
SPRINGThymeleaf 템플릿에서 세션 속성에 액세스하기
컨트롤러 코드없이 세션 개체를 검색하고 해당 속성에 Thymeleaf 템플릿에서 액세스 할 수 있는지 여부를 알고 싶습니다.
해결법
-
==============================
1.Thymeleaf에서 세션 객체는 템플릿에서 쉽게 액세스 할 수 있습니다.
Thymeleaf에서 세션 객체는 템플릿에서 쉽게 액세스 할 수 있습니다.
${session.foo} // Retrieves the session atttribute 'foo' ${session.size()} ${session.isEmpty()} ${session.containsKey('foo')}
${#ctx.httpSession}
다른 컨텍스트 객체에 액세스하려면 Thymeleaf 설명서를 참조하십시오. http://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#expression-basic-objects
from https://stackoverflow.com/questions/20632134/accessing-session-attributes-in-thymeleaf-templates by cc-by-sa and MIT license
'SPRING' 카테고리의 다른 글
[SPRING] Spring MVC에서 정적 페이지 주소 지정을 처리하는 방법 (0) | 2019.03.30 |
---|---|
[SPRING] spring-mvc에서 페이지를 리디렉션하는 매개 변수를 전달하는 방법 (0) | 2019.03.30 |
[SPRING] 객체로 태그 선택 - Thymeleaf 및 Spring MVC (0) | 2019.03.30 |
[SPRING] Spring에서 CORS 지원을 완전히 비활성화 할 수 있습니까? (0) | 2019.03.30 |
[SPRING] 적합한 기본 RequestUpgradeStrategy가 없습니다. (0) | 2019.03.30 |