Thymeleaf의 가장 큰 장점 natural templates html 파일을 서버사이드 렌더링을 하지않고 브라우저에 띄워도 정상적인 화면을 볼 수 있음 th:text 란? model의 data라는 key값에 담아준 값을 출력한다. @GetMapping(value = "/ex01") public String thymeleafExample01(Model model){ model.addAttribute("data", "타임리프 예제 입니다."); return "thymeleafEx/thymeleafEx01"; } Hello Thymeleaf!!