본문 바로가기

공부/SpringBoot & Spring

[Thymeleaf] 문자열 조합(합치기)

반응형

Thymeleaf에서 문자열 조합

<div th:text="'Hello, ' + ${name} + '!!'"></div>

먼가 지저분하다. 이럴 때, |로 싸주면 문자열을 조합할 수 있다.

<div th:text="|Hello, ${name}!!|"></div>

 

반응형