여기서 진행한다. Serving Web Content with Spring MVC title을 참고하여 만들어 주었다. Thymeleaf Spring Web Spring Boot DevTools 세 개의 Dependencies를 ADD해주고 project를 generate 해주자. GreetingController 패키지를 만들어주고 class를 작성해준다. package com.example.mythymeleaf.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import..