servlet-context.xml 의 많은 설정들 중 resources에 대해 알아보자.
<resources mapping="/assets/**" location="/resources/assets/" />
/assets/ 로 시작하는 부분은 Dispatcher로 넘기는게 아니라 /resources/assets/ 로 이동시키라는 의미이다.
css, js 등이 적용이 안되는 현상의 원인으로 자주 등장한다.
Dispatcher로 넘어가버리게 되어 404에러가 발생하기 때문이다.
'Backend > Spring' 카테고리의 다른 글
[JPA] javax.persistence.EntityNotFoundException: Unable to find ... 에러 해결 (0) | 2023.02.22 |
---|---|
[Spring] @RequestParam (0) | 2022.11.03 |
[Spring] @ControllerAdvice 예외 처리 (0) | 2022.10.24 |