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>
반응형
'Backend > SpringBoot' 카테고리의 다른 글
Spring Boot - 외부 API Json 방식으로 호출 하기 (0) | 2021.05.06 |
---|---|
에러 일기 (0) | 2020.07.21 |
Spring Boot - 외부 API xml 방식으로 호출 하기 (0) | 2020.07.06 |
SpringBoot 파일 업로드 & 다운로드 코드 분석 (0) | 2020.06.16 |
Spring Boot 리다이렉트하기 (0) | 2020.05.26 |
댓글