There was an unexpected error (type = Internal Server Error, status=500)
에러가 떴다.
org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/thymeleafEx/thymeleafEx01.html]")
Thymeleaf 예제 중인데,
뭘 잘못했는지 모르겠어서 한참을 쳐다보았다.
Thymeleaf 예제 중에 오류가 떴기에, 금방 작성한 .html 파일을 여러번 봤다.
처음 써보는 Thymeleaf라 제대로 쓴건지도 잘 모르겠어서 긴가민가했다.
<p th :text="${data}> Hello Thymeleaf!!</p>
8행에서 th 이후 띄어쓰기를 했던 것을 발견했다.
<p th:text="${data}> Hello Thymeleaf!!</p>
붙여주니 글자색도 바뀌었다.