MVC 방식으로 작성해보도록하자! 동작방식 웹브라우저 (loclhost:8080/hello-mvc) -> 내장 톰캣 서버 -> helloController(retrun:hello-template ,model(name:solyiTest)) -> viewResolver(templates/hello-template.html 타임리프 템플릿 엔진처리) -> 내장 톰캣서버 ->웹브라우저(hello-template.html 변환후) 컨트롤러에서 리턴 값으로 문자를 반환하면 뷰 리졸버가 화면을 찾아서 처리한다. - 스프링부트 템플릿엔진 viewName 매핑 - resources:templates/ + {viewName} + .html 참고: spring-boot-devtools 라이브러리를 추가하면, html 파일을..