12、整合Mybatis

步骤:
1、导入相关的jar包

  • junit
  • mybatis
  • mysql数据库
  • spring相关
  • aop织入
  • mybatis-sping**[new]**
        <!--mybatis-spring-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>2.0.6</version>
        </dependency>
  • spring-jdbc**[new]**
        <!--Spring操作数据库还需要一个 spring-jdbc-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>5.3.12</version>
        </dependency>


2、编写配置文件

3、测试


12.1、回忆Mybatis

步骤:
1、编写实体类
2、编写核心配置文件
3、编写接口
4、编写Mapper.xml
5、测试
一定要防止资源导出异常!!!


12.2、MyBatis-Spring

什么是MyBatis-Spring
MyBatis-Spring 会帮助你将 MyBatis 代码无缝地整合到 Spring 中。它将允许 MyBatis 参与到 Spring 的事务管理之中,创建映射器 mapper 和 SqlSession 并注入到 bean 中
对应的版本

MyBatis-SpringMyBatisSpring FrameworkSpring BatchJava
2.03.5+5.0+4.0+Java 8+
1.33.4+3.2.2+2.1+Java 6+

整合方式一

步骤:
Mybatis的全部步骤加上(可以不写核心配置文件mybatis-config.xml)
1、编写配置文件
① 数据源配置(datasource)
② sqlSessionFactory
③ sqlSessionTemplate
2、需要给接口加实现类**[新步骤]**
④ 将自己写的实现类, 注入到Spring中
3、测试

1、编写配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!--DataSource: 使用Spring的数据源替代了mybatis-config.xml的配置<environments> c3p0 dbcp druid -->
    <!--我这里使用的是Spring提供的JDBC : org.springframework.jdbc.datasource.DriverManagerDataSource
    所以一定要导spring-jdbc这个包-->
    <bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url"
                  value="jdbc:mysql://localhost:3306/mybatis?useUnicode=true&amp;characterEncoding=utf8&amp;useSSL=false"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
    </bean>

    <!--sqlSessionFactory 可以代替原来的mybatis-config.xml的所有工作!!
                          可以代替Mybatis中的工具类(创建sqlSessionFactory)-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!--配置环境-->
        <property name="dataSource" ref="datasource"/>

        <!--绑定Mybatis核心配置文件
        (完全可以不加这一步,但建议绑定,
        因为类型别名和设置建议在mybatis-config.xml中设置)-->
        <property name="configLocation" value="classpath:mybatis-config.xml"/>

        <!--注册映射器 <mappers>-->
        <property name="mapperLocations" value="classpath:com/mapper/*.xml"/><!--匹配该包下的所用xml文件-->
    </bean>

    <!--SqlSessionTemplate: 就是我们使用的sqlSession-->
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <!--只能使用构造器注入sqlSessionFactory, 因为它没有set方法-->
        <constructor-arg index="0" ref="sqlSessionFactory"/>
    </bean>

    <!--实现类-->
    <bean id="userMapper" class="com.mapper.UserMapperImpl">
        <property name="sqlSession" ref="sqlSession"/>
    </bean>
</beans>

① 数据源配置(datasource)

    <!--DataSource: 使用Spring的数据源替代了mybatis-config.xml的配置<environments> c3p0 dbcp druid -->
    <!--我这里使用的是Spring提供的JDBC : org.springframework.jdbc.datasource.DriverManagerDataSource
    所以一定要导spring-jdbc这个包-->
    <bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url"
                  value="jdbc:mysql://localhost:3306/mybatis?useUnicode=true&amp;characterEncoding=utf8&amp;useSSL=false"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
    </bean>

② sqlSessionFactory

<!--sqlSessionFactory 可以代替原来的mybatis-config.xml的所有工作!!
                          可以代替Mybatis中的工具类(创建sqlSessionFactory)-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!--配置环境-->
        <property name="dataSource" ref="datasource"/>

        <!--绑定Mybatis核心配置文件
        (完全可以不加这一步,但建议绑定,
        因为类型别名和设置建议在mybatis-config.xml中设置)-->
        <property name="configLocation" value="classpath:mybatis-config.xml"/>

        <!--注册映射器 <mappers>-->
        <property name="mapperLocations" value="classpath:com/mapper/*.xml"/><!--匹配该包下的所用xml文件-->
    </bean>

③ sqlSessionTemplate

	<!--SqlSessionTemplate: 就是我们使用的sqlSession-->
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <!--只能使用构造器注入sqlSessionFactory, 因为它没有set方法-->
        <constructor-arg index="0" ref="sqlSessionFactory"/>
    </bean>

2、需要给接口加实现类**[新步骤]**

public class UserMapperImpl implements UserMapper {
    //我们的所有操作,都使用sqlSession来执行,在原来,现在都是用SqlSessionTemplate
    private SqlSessionTemplate sqlSession;

    public void setSqlSession(SqlSessionTemplate sqlSession) {
        this.sqlSession = sqlSession;
    }

    @Override
    public List<User> selectUser() {
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        return mapper.selectUser();
    }
}

④ 将自己写的实现类, 注入到Spring中

    <!--实现类-->
    <bean id="userMapper" class="com.mapper.UserMapperImpl">
        <property name="sqlSession" ref="sqlSession"/>
    </bean>

3、测试

    //现在的Spring-Mybatis流程
    @Test
    public void selectUser2() {
        ApplicationContext context = new ClassPathXmlApplicationContext("spring-dao.xml");

        UserMapper userMapper = context.getBean("userMapper", UserMapper.class);
        List<User> userList = userMapper.selectUser();
        for (User user : userList) {
            System.out.println(user);
        }
    }

整合方式二

原理和步骤与方式一相同,
但通过对接口实现类继承 SqlSessionDaoSupport
省略了_SqlSessionTemplate_, 进行了简化

1、接口实现类

public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper {
    @Override//原理与方式一相同
    public List<User> selectUser() {
//        SqlSession sqlSession = getSqlSession();
//        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
//        return mapper.selectUser();

        //上面的简化版
        return getSqlSession().getMapper(UserMapper.class).selectUser();
    }
}

2、Spring配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--DataSource: 使用Spring的数据源替代了mybatis-config.xml的配置<environments> c3p0 dbcp druid -->
    <!--我这里使用的是Spring提供的JDBC : org.springframework.jdbc.datasource.DriverManagerDataSource
    所以一定要导spring-jdbc这个包-->
    <bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url"
                  value="jdbc:mysql://localhost:3306/mybatis?useUnicode=true&amp;characterEncoding=utf8&amp;useSSL=false"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
    </bean>

    <!--sqlSessionFactory 可以代替原来的mybatis-config.xml的所有工作!!
                          可以代替Mybatis中的工具类(创建sqlSessionFactory)-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean ">
        <!--配置环境-->
        <property name="dataSource" ref="datasource"/>

        <!--绑定Mybatis核心配置文件
        (完全可以不加这一步,但建议绑定,
        因为类型别名和设置建议在mybatis-config.xml中设置)-->
        <property name="configLocation" value="classpath:mybatis-config.xml"/>

        <!--注册映射器 <mappers>-->
        <property name="mapperLocations" value="classpath:com/mapper/*.xml"/><!--匹配该包下的所用xml文件-->
    </bean>

    <!--不需要SqlSessionTemplate -->

    <bean id="userMapper2" class="com.mapper.UserMapperImpl2">
        <property name="sqlSessionFactory" ref="sqlSessionFactory"/>
    </bean>
</beans>

3、测试

    //方式二
    @Test
    public void selectUser2(){
        ApplicationContext context = new ClassPathXmlApplicationContext("spring-dao2.xml");

        UserMapper userMapper = context.getBean("userMapper2", UserMapper.class);
        List<User> userList = userMapper.selectUser();
        for (User user : userList) {
            System.out.println(user);
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值