business-standard.xml 949 Bytes
Newer Older
罗绍泽 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
	<bean id="sqlSessionFactory-standard" class="org.mybatis.spring.SqlSessionFactoryBean">
	    <property name="dataSource" ref="dataSource-standard" />
	    <property name="configLocation" value="/WEB-INF/conf/gaowj/bl/mybatis-config.xml" />
	    <property name="mapperLocations">
	    	<list>
	    		<value>classpath:com/gaowj/business/standard/StandardDAO.xml</value>
	    	</list>
	    </property>
	</bean>
	
	<bean id="StandardBusiness" class="com.gaowj.business.standard.StandardBusinessImpl">
		<property name="standardDAO">
			<bean class="org.mybatis.spring.mapper.MapperFactoryBean">
				<property name="mapperInterface" value="com.gaowj.business.standard.StandardDAO" />
				<property name="sqlSessionFactory" ref="sqlSessionFactory-standard" />
			</bean>
		</property>
	</bean>
</beans>