MVC와 템플릿 엔진: 서버에서 프로그래밍해서 동적으로 HTML 파일을 생성해서 제공하는 엔진 MVC: Model, View, Controller hello-spring/src/main/resources/templates/hello-template.html 파일 작성 hello! empty hello-spring/src/main/java/hello.hellospring/controller/HelloController 클래스 파일 작성 package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.w..