index.html(2)
-
Spring boot index.html 설정
http://localhost:8081로 접속시 index.html 화면이 나오도록 설정 @GetMapping("/") public String index() { return "forward:/index.html"; }
2021.04.05 -
Spring Boot에서 html과 jsp 중 어느 것이 더 먼저 인식이 될까?
/static/index.html /WEB-INF/jsp/index.jsp 위 2개가 셋팅된 상태에서 localhost:8080으로 호출하면, index.html이 호출됨
2021.03.10