[Spring] 리소스 불러올 때 URL 경로에 resources 빼는 방법

2024. 7. 19. 19:45WebBack/Spring

[src] -> [main] -> [webapp] -> [WEB-INF] -> [spring] 에 들어가면 servlet-context와 root-context를 찾을 수 있다. 앱과 관련된 설정은 appServlet에 있는 servlet-context에 저장되어 있고, 앱과 관련이 없는 것은 root-context에 저장되어 있다.  

 

 

servlet-context.xml에 들어가서 resources mappiing="/resources/**"부분에서 resources를 지워버리면 된다. 이제 정적리소스를 불러올 때 resources를 붙이지 않아도 된다. 

 

'WebBack > Spring' 카테고리의 다른 글

[Spring] HTML 파일 인코드 설정 변경  (0) 2024.07.19
[Spring] 회원가입 화면 예시 폼  (0) 2024.07.19
[Spring] @ModelAttribute  (0) 2024.07.19
[Spring] 한글 변환 필터  (0) 2024.07.18
[Spring] 반복 연습  (0) 2024.07.16