Java/JAVA 오류기록
[Java] java.io.FileNotFoundException: class path resource [주소] cannot be opened because it does not exist
냠냠쿠
2024. 11. 22. 16:02
728x90
web.xml에서
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/context-*.xml</param-value>
</context-param>
이 부분을
<context-param>
<param-name>contextConfigLocation</param-name>
<!-- <param-value>/WEB-INF/spring/context-*.xml</param-value> -->
<param-value>
/**/server-applicationContext.xml
classpath:/bizcomponents/bizcomponentContext-config.xml
classpath:/bizcomponents/bizcomponentContext-hht.xml
</param-value>
</context-param>
이렇게 수정함..
다른 에러가 생겼지만..
참고한 블로그 :
728x90