Mybatis中,所有的操作都基于SqlSession。SqlSession用来获取执行sql接口的实例,打开与数据库的链接。要在spring中使用Mybatis时,需要在spring-config.xml文件中先配置Mybatis的SqlSessionFactoryBean,它对应Mybatis中的SqlSessionFactory,用来构造SqlSession,例如:
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mapperLocations" value="classpath:xxx/mappers/*Mapper.xml" />
<property name="typeAliasesPackage" value="com.xxx.xxx.model" />
<property name="configLocation" value="classpath:xxx/Mybatis-config.xml">
</bean>
这几个属性分别用来指定数据源,Mapper.xml(指定sql语句的文件),使用别名的类所在包,Mybatis配置文件。至此,已经把Mapper.xml文件找到,还缺这些Mapper.xml对应的接口。
有两种方式导入这些接口,一种是一个一个导入,一种是一个包下所有接口一次性扫描导入。一方面要找到Mapper.xml对应的接口,另一方面找到接口后还需要将接口和Mapper.xml文件关联,而SqlSessionFactory持有这些Mapper.xml。所以不管什么方式,都需要将这两个参数显示传入。
1)在spring-config.xml中配置一个MapperFactoryBean来导入一个接口,例如:
<bean id="xxxMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
<property name="mapperInterface" value="com.xxx.mappers.xxxMapper" />
<property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean>
当接口比较少的时候可以用这种方式,一个bean导入一个接口。这些bean会被spring管理起来。使用接口可以利用@Resource等方式注入,接口上不必@Component之类的注解。属性意义很明确,不再赘述。
2)在spring-config.xml中配置MapperScannerConfigurer一次性导入一个包下面的所有接口
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.xxx.mappers" />
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
</bean>
当需要导入较多接口的时候可以采用这种方式。