<?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-test" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource-business" /> <property name="configLocation" value="/WEB-INF/conf/gaowj/bl/mybatis-config.xml" /> <property name="mapperLocations"> <list> <value>classpath:com/gaowj/business/student/studentDAO.xml</value> </list> </property> </bean> <bean id="StudentBusiness" class="com.gaowj.business.student.StudentBusinessImpl"> <property name="studentDAO"> <bean class="org.mybatis.spring.mapper.MapperFactoryBean"> <property name="mapperInterface" value="com.gaowj.business.student.studentDAO" /> <property name="sqlSessionFactory" ref="sqlSessionFactory-test" /> </bean> </property> </bean> </beans>