본문 바로가기

Spring/오류

FileNotFoundException

728x90
반응형

Could not open ServletContext resource [파일 경로]

 

 원인

- 파일 경로 내의 파일을 찾을 수 없을 때 발생

   (파일이 없거나 파일 명이 다를 때)

- 파일이 있어도 읽기/쓰기 권한이 없을 때 발생

 

 예시

 에러 문구

ERROR: org.springframework.web.context.ContextLoader - Context initialization failed
org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from ServletContext resource [/WEB-INF/spring/security-context.xml]; 
nested exception is java.io.FileNotFoundExceptionCould not open ServletContext resource [/WEB-INF/spring/security-context.xml]

 

 ① 파일 경로/이름 확인

security-context.xml이 serucity-context.xml로 오타 

728x90
반응형

'Spring > 오류' 카테고리의 다른 글

ClassNotFoundException  (0) 2020.05.27
PageNotFound  (0) 2020.05.26
[톰캣] Multiple Contexts have a path of "/경로이름"  (0) 2020.04.10
LifecycleException  (0) 2020.04.06
NoSuchBeanDefinitionException  (0) 2020.04.01