springboot2-thymeleaf 사용 예제를 다룬 코드를 참고한다.
https://www.mkyong.com/spring-boot/spring-boot-hello-world-example-thymeleaf/
실수하기 좋은 부분은 다음과 같다.
1. html 파일에 다음을 추가해야 한다.
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
2. th를 잘 사용한다.
velocity에서 아래와 같이 사용했다면..
<span class="item">${link.itemName}</span>
아래와 같이 th:text를 사용한다.
<span class="item" th:text="${link.itemName}"></span>
3,
velocity에서 아래와 같이 사용했다면..
<span class="image" style="background-image:url(${link.thumbnail})"></span>
아래와 같이 th:style과 콜럼을 잘 사용해야 한다. 실수하기 가장 쉬운 곳이 아래 빨간색 색칠한 부분이다.
<span class="image" th:style="'background-image:url(' + ${link. thumbnail} + ');'"></span>
'general java' 카테고리의 다른 글
[rabbitmq] rabbitmq client 개발시 주의사항 - Process Proxy 데몬 Hang (0) | 2019.10.06 |
---|---|
[spring] spring cloud config 사용시 암호 관련 예시 (0) | 2019.09.17 |
[jenkins] sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target , PKIX path building failed 해결하기 (0) | 2019.06.17 |
jenkins 장비의 플러그인 목록 출력하기 (0) | 2019.06.11 |
[gradle] proxy 설정 (0) | 2019.04.01 |