(附详细图)spring-dao.xml文件中这句会出错:<context:property-placeholder location="classpath:jdbc.properties"/>
详细内容如下,来这找找解决办法
详细内容如下,来这找找解决办法
2016-07-26
ok,解决了。虽然只是细节问题,但依旧花费我不少时间。这里,将解决方法放出来。希望能帮到和我遇到同样问题的新人吧。
1、出现该问题的直接原因:在spring官方文档中复制的xml头部是不完整的。而且因为我的开发工具MyEclipse没有给我自动增加context解析文件,所以会报错。在主讲老师的xml文件中,是在输入context由开发工具自动增加的;
2、解决办法:在spring-dao.xml文件头部手动增加context解析文件。完整的如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
3、ok,解决了。希望能帮到你^^
举报