Could not open ServletContext resource [/WEB-INF/applicationContext.xml]解决方法

抛错:

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]
Caused by: java.io.FileNotFoundException: Could not open ServletContext resource [/WEB-INF/applicationContext.xml]


解决问题:

在web.xml文件中加入如下配置:

context-param>
    contextConfigLocation 
    /WEB-INF/classes/applicationContext-*.xml 
  

原因分析:

问题主要由于加载spring的默认配置文件位置一般是在/WEB-INF/下找applicationContext.xml文件。而Myeclipse文件自动生成的applicationContext文件是放在/WEB-INF/classes/applicationContext.xml。所以在默认加载中是找到applicationContext.xml文件的,必须加入上面配置。

你可能感兴趣的:(Could not open ServletContext resource [/WEB-INF/applicationContext.xml]解决方法)