general java
[springboot2] thymeleaf 사용할 때 주의할 점
'김용환'
2019. 8. 20. 22:44
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>