Spring整合MyBatis

前言

Mybatis本事Apache的一個開源項目iBatis,2010年這個項目由Apache Software Foundation遷移到了Google Code,而且更名爲MyBatis。html

MyBatis是支持普通SQL查詢、存儲過程和高級映射的優秀持久層框架。MyBatis消除了幾乎全部的JDBC代碼和參數的手工設置以及結果集的檢索。MyBatis使用簡單的XML或註解用於配置和原始映射,將接口和Java的POJOs(Plain Old Java Objects,普通的Java對象)映射成數據庫中的記錄。mysql

Spring整合MyBatis

儘管咱們接觸更多的是MyBatis與Spring的整合使用,可是MyBatis有它本身的獨立使用方法,瞭解其獨立的使用方法對分析Spring整合MyBatis很是有幫助,由於Spring無非就是把這些功能進行封裝以簡化咱們的開發流程。程序員

(1)創建PO;spring

用於數據庫中數據的映射,使得程序員更關注於對Java類的使用而不是數據庫的操做。sql

public class User {

    private Integer id;
    private String name;
    private Integer age;
    

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
}

(2)創建mapper;數據庫

數據庫操做映射文件,也就是咱們常說的DAO,用於映射數據庫的操做,能夠經過配置文件指定方法對應的SQL語句或者直接使用Java提供的註解方式進行SQL指定。mybatis

public interface UserDao {

    User selectUser(Integer id);
    void insertUser(User user);

}

(3)創建配置文件spring-mybatis.xml;app

<?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:context="http://www.springframework.org/schema/context"
       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/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx.xsd">

    <!-- 掃描service包下全部使用註解的類型 -->
    <context:component-scan base-package="com.joe.service"/>

    <!-- 配置數據庫相關參數properties的屬性:${url} -->
    <context:property-placeholder location="classpath:jdbc.properties"/>

    <!-- 數據庫鏈接池 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${jdbc.driver}"/>
        <property name="jdbcUrl" value="${jdbc.url}"/>
        <property name="user" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
        <property name="maxPoolSize" value="${c3p0.maxPoolSize}"/>
        <property name="minPoolSize" value="${c3p0.minPoolSize}"/>
        <property name="autoCommitOnClose" value="${c3p0.autoCommitOnClose}"/>
        <property name="checkoutTimeout" value="${c3p0.checkoutTimeout}"/>
        <property name="acquireRetryAttempts" value="${c3p0.acquireRetryAttempts}"/>
    </bean>

    <!-- 配置SqlSessionFactory對象 -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!-- 注入數據庫鏈接池 -->
        <property name="dataSource" ref="dataSource"/>
        <!-- 掃描model包 使用別名 -->
        <property name="typeAliasesPackage" value="com.joe.model"/>
        <!-- 掃描sql配置文件:mapper須要的xml文件 -->
        <property name="mapperLocations" value="classpath:mapper/*.xml"/>
    </bean>

    <!-- 配置掃描Dao接口包,動態實現Dao接口,注入到spring容器中 -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <!-- 注入sqlSessionFactory -->
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
        <!-- 給出須要掃描Dao接口包 -->
        <property name="basePackage" value="com.joe.dao"/>
    </bean>

    <!-- 配置事務管理器 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <!-- 注入數據庫鏈接池 -->
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <!-- 配置基於註解的聲明式事務 -->
    <tx:annotation-driven transaction-manager="transactionManager"/>

</beans>

(4)創建映射文件UserDao.xml;框架

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<!-- 設置爲IUserDao接口方法提供sql語句配置 -->
<mapper namespace="com.joe.dao.UserDao">

    <select id="selectUser" resultType="User" parameterType="int">
        SELECT * FROM user WHERE id = #{id}
    </select>

    <insert id="insertUser" parameterType="User">
        insert into user (name,age) values (#{name},#{age})
    </insert>

</mapper>

(5)創建jdbc.properties;測試

jdbc.driver=com.mysql.jdbc.Driver
#數據庫地址
jdbc.url=jdbc:mysql://localhost:3306/joe?useUnicode=true&characterEncoding=utf8
#用戶名
jdbc.username=root
#密碼
jdbc.password=123456
#最大鏈接數
c3p0.maxPoolSize=30
#最小鏈接數
c3p0.minPoolSize=10
#關閉鏈接後不自動commit
c3p0.autoCommitOnClose=false
#獲取鏈接超時時間
c3p0.checkoutTimeout=10000
#當獲取鏈接失敗重試次數
c3p0.acquireRetryAttempts=2

(6)測試;

// 加載spring配置文件
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"classpath:spring-mybatis.xml"})
public class UserDaoTest {

    @Autowired
    private UserDao dao;

    @Test
    public void testSelectUser() throws Exception {
        int id = 2;
        User user = dao.selectUser(id);
        System.out.println(user.getName());
    }
    @Test
    public void testInsertUser(){
        User user = new User();
        user.setName("James");
        user.setAge(34);
        dao.insertUser(user);
    }
}

運行上述代碼:

testSelectUser:
Joe
testInsertUser:

能夠看出測試成功。

參考:《Spring源碼深度解析》 郝佳 編著: 

IDEA搭建SSM項目:https://www.cnblogs.com/hackyo/p/6646051.html

相關文章
相關標籤/搜索