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>
'Front > Thymeleaf' 카테고리의 다른 글
[Thymeleaf] 타임리프 삼항 연산자 (0) | 2023.03.03 |
---|---|
[Thymeleaf] 타임리프 th:onclick 사용하기 (0) | 2022.07.30 |
[Thymeleaf] 유용한 타임리프 문법 #1 (0) | 2022.03.16 |
[Thymeleaf] a 태그 문자열 조합하여 사용하기 (0) | 2022.03.10 |
[Thymeleaf] ajax 이용해 비동기식 화면 수정(더보기, 댓글 구현) (0) | 2022.02.11 |
댓글