严重: Context initialization failed org.springframework.beans.factory.BeanDefinitionStoreException: I

严重: Context initialization failed

org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from ServletContext resource [/WEB-INF/applicationContext.xml]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/WEB-INF/applicationContext.xml]

1.在web.xml中进行如下修改

<!-- Spring监听器 -->
<listener>
   <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

2:修改后,在listener前面加入如下红色位置classpath:spring/applicationContext-*.xml为applicationContext.xml的路径

<!-- Spring监听器 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/applicationContext-*.xml</param-value>
</context-param>
<listener>
   <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

猜你喜欢

转载自blog.csdn.net/a599174211/article/details/84246958