<html xmlns:th="http://www.thymeleaf.org">
html파일 위에 수정해준다.
<p th:text="${data}">Hello Thymeleaf!</p>
이런식으로 사용한다.
예시
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"> <!--thymeleaf 문법을 사용하기 위해 추가 -->
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<p th:text="${data}">Hello Thymeleaf!!</p> <!-- controller의 model의 data라는 key값에 담아준 값 출력 -->
</body>
</html>