Spring整合Mybatis
Spring整合Mybatis实际上做的就是将Mybatis创建SqlSession对象,创建接口代理类对象等功能整合在了Spring中,通过创建bean的方式创建原来Mybatis需要创建的一些对象
直接看配置和注释:
<?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:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
">
<!--DataSource:使用Spring的数据源替代Mybatis的配置,这里使用Spring提供的JDBC-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=false&useUnicode=true&characterEncoding=UTF-8"/>
<property name="username" value="root"/>
<property name="password" value="123456"/>
</bean>
<!--sqlSessionFactory-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<!--绑定Mybatis配置文件-->
<property name="configLocation" value="classpath:mybatis-config.xml"/>
<!--当然也可以不需要Mybatis配置文件,这样的话就需要把mybatis-config.xml文件的内容在sqlSessionFactory的属性中配置
比如:
<property name="mapperLocations" value=""/>
<property name="typeAliases" value=""/>
-->
</bean>
<!--创建一个SqlSession对象-->
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<!--只能使用构造器注入sqlSessionFactory,因为SqlSessionTemplate没有set方法-->
<constructor-arg index="0" ref="sqlSessionFactory"/>
</bean>
<!--可以直接创建一个UserMapper接口代理类对象-->
<bean id="mapper1" class="org.mybatis.spring.mapper.MapperFactoryBean">
<property name="mapperInterface" value="com.zm.mapper.UserMapper"/>
<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>
</bean>