收到一个 Spring/Maven 项目后,我:
- 跑
mvn eclipse:eclipse
过去, - 将其加载到 Eclipse JEE(最新版本,称为 Neon)中,
- 为它添加了
Dynamic Web Module
刻面, - 点击 Run Jetty 就可以了。
问题:它没有找到自己的 applicationContext.xml,即使它存在于src/main/webapp/WEB-INF/classes/applicationContext.xml
.
16:58:58.183 [main] ERROR org.springframework.web.context.ContextLoader - Context initialization failed
org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [applicationContext.xml]; nested exception is java.io.FileNotFoundException: class path resource [applicationContext.xml] cannot be opened because it does not exist
问题:我如何告诉 Eclipse JEE applicationContext.xml 在哪里,或者解决这个问题?