웹 개발 방식 3가지 정적 컨텐츠 MVC와 템플릿 엔진 API 📝 정적 컨텐츠 정적 컨텐츠 스프링 부트는 정적 컨텐츠 기능을 자동으로 제공한다. Spring Boot Features 정적 컨텐츠 hello-static.html 정적 컨텐츠 입니다. resources/static/hello-static.html 실행 http://localhost:8080/hello-static.html 정적 컨텐츠 동작 원리 스프링은 가장 먼저 controller에서 hello-static이 있는지 찾는다. 이때, controller가 먼저 우선순위를 갖는다 없으면 resources/static에서 hello-static을 찾는다. 📝 MVC와 템플릿 엔진 MVC Model, View, Controller 관심사 분리가 ..