Spring Boot 프로젝트를 만든 후 JSP 를 쓰려면1) jstl, tomcat-embed-jasper 추가2) application.properties 에 spring.mvc.view.prefix: /WEB-INF/jsp/ spring.mvc.view.suffix: .jsp 3) jsp 위치src/main/webapp/WEB-INF/jsp여기에 JSP 파일 위치하도록, 나머지 css, js 파일 등은 static 에 위치시키면 될듯.. 4) non-jsp, html, css 등 파일 위치 index.html 를 예를 들면src/main/resources/META-INF/resources/index.html src/main/resources/resources/index.html src/main/re..