반응형

spring boot + thymeleaf 구조에서 resources/static 밑의 js 파일들을 사용하려고 하는데....

경로가 잘못돼서 ... 자꾸 에러가.. 났다...

Failed to load resource: the server responded with a status of 404 ()

GET http://localhost:8888/static/assets/js/mountain.js net::ERR_ABORTED 404

 

 

thymeleaf 에서의 리소스의 디폴트 경로는 /resources/static/ 이므로

static 밑의 경로부터 적어주면 잘 됨!

<script src="/assets/js/mountain.js"></script>
<script src="/js/index.js"></script>

 


관련 내용 참고

 

[SpringBoot] 정적자원관리(Resource handle) - Jongmin's Blog

정적 자원(Static Resource) 정적자원이란 html, css, image, javascript와 같이 컴파일이 필요없는 파일들을 말합니다. 스프링 부트에서 Web MVC 설정을 담당하는 WebMvcAutoConfiguration 클래스는 기본 설정으로 웹

JongMinLee0.github.io

 

반응형

+ Recent posts