Thymeleaf 문자열 조합법 (간단)

ShiningDr·2021년 4월 30일
0

프로젝트 기록

목록 보기
2/2
post-custom-banner

Thymeleaf 에서 문자열 조합하기

처음에는

<h1 th:text="'Item name : ' + '${item.name}'"></h1>

이렇게 했는데 더 간단하게 해보고 싶어서 조사해본 결과..

<h1 th:text="|Item name : ${item.name}|"></h1>

간단하다.
까먹지 않게 기록.

profile
Java Web Developer

0개의 댓글