Controller

 @Controller
 public class HelloController {
     @GetMapping("hello-mvc")
     public String helloMvc(@RequestParam("name") String name, Model model) {
         model.addAttribute("name", name);
         return "hello-template";
     }
}

View resources/templates/hello-template.html

 <html xmlns:th="<http://www.thymeleaf.org>">
 <body>
 <p th:text="'hello ' + ${name}">hello! empty</p>
 </body>
</html>

MVC, 템플릿 엔진 이미지

스크린샷 2025-03-25 오후 1.14.56.png