关于SSM整合中遇到的org.springframework.beans.factory.BeanDefinitionStoreException: IOException pars 问题

来源:互联网 发布:淘宝网男士鞋子 编辑:程序博客网 时间:2024/06/05 21:57

今天在整合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>
这样修改后重新运行,不再报错。希望以后有遇到此问题的童鞋能很快解决哦!

0 0
原创粉丝点击