Spring/Spring Boot
(SpringBoot) Spring Mvc(4) - 정적 리소스 지원
주누
2020. 1. 11. 00:23

정적 리소스 란?
웹 브라우저 혹은 클라이언트에서 요청이 들어왔을때 이미 만들어진 리소스가 있을때 해당 리소스를 그대로 보내주면 되는 경우
- classpath:/static
- classpath:/public
- classpath:/resources/
- classpath:/META-INF/resources 예) “/hello.html” => /static/hello.html
