본문 바로가기
Backend/SpringBoot

Thymeleaf 문자열 조합

by YERIEL_염주둥 2020. 7. 22.
728x90

Thymeleaf에서 문자열 조합을 하려면..

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

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

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

 

 


<div class="feature d-flex flex-row align-items-center justify-content-start">
  <div class="feature_title"><span th:text="발행사항"></span></div>
  <div class="feature_text ml-auto" th:text="|${bookDetail.publisherName},${bookDetail.bookPublishDate}|"></div>
</div>

 

반응형

댓글