加载spring时applicationContext.xml文件出错

来源:互联网 发布:php oa办公系统源码 编辑:程序博客网 时间:2024/03/29 13:15

今天联系Spring+Hibernate基础,没办法,SSH配置一直一直在出问题,只能一点一点的调了~
首先在新建工程的时候就出现了问题,用MyEclipse加入Spring支持的时候就出现了错误提示,T_T~~~~我明明嘛都米开始干呢。。。。。

applicationContext.xml头出现了问题,MyEclipse提示如下错误:
Referenced file contains errors(http://www.springframework.org/schema/beans/spring-beans-2.0.xsd).For more information,right click on the message and select "Show Details"

这个问题经过上网搜索查询反复的改正,终于解决。
原因如下:
原头信息:
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.0.xsd">

配置bean
</beans>
问题原因:我也不是特别清楚,估计是链接外网时出现问题,链接外网文件无法得到。

修改方法:
将头文件改为:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>

配置bean

</beans>
问题解决。

解决了配置问题,进行了简单测试又出现了一个小问题,运行时
出现如下错误:
Exception in thread "main" 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
Caused by: java.io.FileNotFoundException: class path resource [../applicationContext.xml] cannot be opened because it does not exist
阅读错误代码很容易发现,
程序无法加载applicationContext.xml文件,
仔细检查
ClassPathXmlApplicationContext ctc=new ClassPathXmlApplicationContext("/applicationContext.xml");
对路径进行复查,修改路径,问题解决~lucky~~~

原创粉丝点击