본문 바로가기
Front/Thymeleaf

[Thymeleaf] 유용한 타임리프 문법 #2

by 은z 2022. 5. 12.

1. application.properties 값 조회  

<span th:text="${@environment.getProperty('app.title')}"></span> 

 

2. message 조회 

<span th:text="#{msg.example.title}"></span>

 

3. 세션 정보 조회

<span th:text="${session['userId']}"></span> 

<span th:text="${session.userId}"></span> 

 

4. Parameter 정보 조회

<span th:text="${param.type}"></span> 

<span th:text="${#httpServletRequest.getParameter('type')}"></span> 

 

5. PathVariable 가져오기 

<span th:text="__${userId}__"></span>

댓글