Spring Boot 로 웹을 개발하는 방법 3가지. 1. Static Content 정적 컨텐츠파일을 그대로 웹브라우저에 내리는 것.Spring Boot 는 정적 컨텐츠를 자동으로 찾아서 내려주는 기능을 제공한다.즉, static 이라는 예약어로 폴더를 만들어서 안에 .html 파일을 넣으면 이를 스프링 부트가 찾아서 그대로 컨텐츠를 내려준다. 정적 컨텐츠에 따로 프로그래밍은 할 수 없다. controller 가 더 우선순위를 갖는다. Servlet Web Applications :: Spring BootIf you want to build servlet-based web applications, you can take advantage of Spring Boot’s auto-configuration ..