spring-dal-base-dao.xml
1.03 KB
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
">
<!-- ======================================================================== -->
<!-- 通用DAL层。 -->
<!-- ======================================================================== -->
<bean id="genericDao" class="com.taobao.sample.petstore.dal.dao.ibatis.IbatisGenericDaoImpl">
<property name="sqlSessionTemplate" ref="sqlSessionTemplate"></property>
<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
</bean>
<bean id="genericJdbcDao" class="com.taobao.sample.petstore.dal.dao.jdbc.JdbcGenericDaoImpl">
<property name="jdbcTemplate" ref="jdbcTemplate"></property>
</bean>
</beans>