level 1
<?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"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="userDao" class="com.lib.dao.impl.IUserDao">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<bean id="studentDao" class="com.lib.dao.impl.IStudentDao">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<bean id="userManagerBase" class="com.lib.manager.impl.IUserManager">
<property name="userDao" ref="userDao"></property>
</bean>
<bean id= "studentManagerBase" class="com.lib.manager.impl.IStudentManager">
<property name="studentDao" ref="studentDao"></property>
</bean>
<!-- 此处为代理 -->
<bean name="userManager" parent="transactionProxy">
<property name="target" ref="userManagerBase"></property>
</bean>
<bean name="studentManager" parent="transactionProxy">
<property name="target" ref="studentManagerBase"></property>
</bean>
</beans>
2016年05月09日 01点05分
