您的位置:首页 > 编程语言 > Java开发

spring配置xml遇到的一些错误,最后修改的版本

2017-09-27 00:00 483 查看
<?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:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
<bean id="TListDao" class="xy.impl.db.TListDaoImpl"
parent="XyDaoSupport"/>
<bean id="ListAction" class="xy.test.ListAction">
<property name="listBean" ref="ListBean" />
</bean>
<bean id="ListBean" class="xy.test.ListBean">
<property name="listDao" ref="TListDao" />
</bean>
<bean id="TPathDao" class="xy.impl.db.TPathDaoImpl"
parent="XyDaoSupport"/>
<bean id="PathAction" class="xy.test.PathAction">
<property name="pathBean" ref="PathBean" />
</bean>
<bean id="PathBean" class="xy.test.PathBean">
<property name="pathDao" ref="TPathDao" />
</bean>

</beans>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐