spring配置xml遇到的一些錯誤,最後修改的版本

<?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>
相關文章
相關標籤/搜索