今天在整合ssm框架的时候, 架包什么的都倒了,但是 就是报错
严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [beans.xml]; nested exception is java.io.FileNotFoundException: class path resource [beans.xml] cannot be opened because it does not exist
最后 搜索一下别人的解决方案知道:
路径不对:
因为使用的是绝对路径,所以需要在web.xml里修改一下路径的位置:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext*.xml</param-value>
</context-param>
这样修改后重新运行,不再报错。希望以后有遇到此问题的童鞋能很快解决哦!