[SpringBoot] 정적자원관리(Resource handle)
Static Resource handle in Spring boot
정적 자원(Static Resource)
정적자원이란 html, css, image, javascript와 같이 컴파일이 필요없는 파일들을 말합니다.
스프링 부트에서 Web MVC 설정을 담당하는 WebMvcAutoConfiguration 클래스는 기본 설정으로 웹 리소스 폴더에서 정적 자원들을 찾습니다. 이 때 템플릿 엔진(Thymeleaf, Gro...