使用Spring Boot與MyBatis集成

上一節(jié)我們使用JPA來進(jìn)行數(shù)據(jù)庫操作,這次我們集成MyBatis來操作數(shù)據(jù)庫闸盔。Spring Boot與MyBatis集成有兩種方式悯辙,一種是基于注解,一種是基于XML配置文件迎吵。我個(gè)人更喜歡使用XML方式躲撰,因?yàn)楦庇^,也更容易維護(hù)击费。喜歡使用注解的同學(xué)可以移步至http://www.mybatis.org/mybatis-3/zh/java-api.html??拢蛋。

引入MyBatis及數(shù)據(jù)庫相關(guān)依賴

 <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
        </dependency>

        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.1.1</version>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>

        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP</artifactId>
        </dependency>

數(shù)據(jù)庫配置文件

#HikariDataSource database settings
spring.datasource.type=com.zaxxer.hikari.HikariDataSource
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/spring_boot?characterEncoding=utf-8
spring.datasource.username=root
spring.datasource.password=123456

spring.datasource.maximum-pool-size=80
spring.datasource.max-idle=10
spring.datasource.max-active=150
spring.datasource.max-wait=10000
spring.datasource.min-idle=5
spring.datasource.initial-size=5
spring.datasource.validation-query=SELECT 1
spring.datasource.test-on-borrow=false
spring.datasource.test-while-idle=true
spring.datasource.time-between-eviction-runs-millis=18800
spring.datasource.jdbc-interceptors=ConnectionState;SlowQueryReport(threshold=0)

mybatis.mapper-locations=classpath*:com/bluecoffee/mapper/**/*Mapper.xml
mybatis.type-aliases-package=com.bluecoffee.domain.**

創(chuàng)建業(yè)務(wù)實(shí)體類

public class Book {

    private Long bookId;

    private String title;

    private String author;

    private Date createTime;

    public Book(){}

    public Book(Long bookId,String title,String author,Date createTime){
        this.bookId = bookId;
        this.title = title;
        this.author = author;
        this.createTime = createTime;
    }

    public Book(String title,String author,Date createTime){
        this.title = title;
        this.author = author;
        this.createTime = createTime;
    }

    //省略getter/setter方法
}

創(chuàng)建數(shù)據(jù)庫操作接口類

@Mapper
public interface BookDao {

    Book getById(Long bookId);

    void insertBook(Book book);

    void deleteAll();

    void updateByPrimaryKey(Book book);

    List<Book> likeTitle(String title);
}

創(chuàng)建SqlMapper.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">
<mapper namespace="com.bluecoffee.repository.BookDao">

    <resultMap id="bookMap" type="com.bluecoffee.domain.Book">
        <id property="bookId" column="book_id" />
        <result property="title" column="title" />
        <result property="author" column="author" />
        <result property="createTime" column="create_time" />
    </resultMap>

    <delete id="deleteAll">
        delete from BOOK
    </delete>

    <insert id="insertBook" parameterType="com.bluecoffee.domain.Book">
        INSERT
        INTO BOOK(BOOK_ID,TITLE,AUTHOR,CREATE_TIME)
        VALUES
        (#{bookId},#{title},#{author},#{createTime})
    </insert>

    <select id="getById" resultMap="bookMap" resultType="com.bluecoffee.domain.Book">
        SELECT *
        FROM BOOK
        WHERE  book_id = #{bookId,jdbcType=BIGINT}
    </select>

    <select id="likeTitle" resultMap="bookMap" parameterType="string" resultType="java.util.List">
        SELECT *
        FROM BOOK
        WHERE TITLE LIKE CONCAT('%',#{title},'%')
    </select>

    <update id="updateByPrimaryKey" parameterType="com.bluecoffee.domain.Book" >
        update BOOK
        <set >
            <if test="title != null" >
                title = #{title,jdbcType=VARCHAR},
            </if>
            <if test="author != null" >
                author = #{author,jdbcType=VARCHAR},
            </if>
            <if test="createTime != null" >
                create_time = #{createTime,jdbcType=TIMESTAMP},
            </if>
        </set>
        where book_id = #{bookId,jdbcType=BIGINT}
    </update>

</mapper>

完整的項(xiàng)目目錄結(jié)構(gòu)如下所示

工程目錄

單元測試用例

    @Test
    public void testBook(){
        try{
            //刪除所有書籍
            bookDao.deleteAll();

            //創(chuàng)建10本書
            for(int i=1;i<=10;i++){
                bookDao.insertBook(new Book(Long.parseLong(i + ""), "book" + i, "author" + i, new Date()));
            }

            //根據(jù)主鍵查詢
            Book book = bookDao.getById(Long.parseLong("9"));
            Assert.assertEquals("book9",book.getTitle());

            //根據(jù)主鍵更新
            book.setBookId(Long.parseLong("9"));
            book.setTitle("book9_update");
            bookDao.updateByPrimaryKey(book);
            Assert.assertEquals("book9_update",book.getTitle());

            //根據(jù)書名模糊查詢
            List<Book> books = bookDao.likeTitle("book");
            Assert.assertEquals(10,books.size());

        }catch (Exception ex){
            Assert.fail(ex.getMessage());
        }
    }

數(shù)據(jù)分頁

數(shù)據(jù)分頁有很多種方法,Github上有一個(gè)不錯(cuò)的插件蔫巩,我覺得不錯(cuò)谆棱,分享一下,項(xiàng)目地址在Mybatis-PageHelper圆仔,下面介紹一下使用方法垃瞧,詳細(xì)的文檔大家可以自己去Github上看看。

引入PageHelper依賴

        <!-- 分頁插件 begin-->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper</artifactId>
            <version>4.2.1</version>
        </dependency>
        <dependency>
            <groupId>com.github.jsqlparser</groupId>
            <artifactId>jsqlparser</artifactId>
            <version>0.9.5</version>
        </dependency>
        <!-- 分頁插件 end-->

對PageHelper進(jìn)行基本的配置坪郭,該配置必須在Spring Boot啟動(dòng)后就加載

package com.bluecoffee.configuration;

import com.github.pagehelper.PageHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.Properties;

/**
 * MyBatis通用分頁插件配置
 *
 * Created by bluecoffee on 16/12/19.
 */
@Configuration
public class MyBatisConfiguration {

    private static final Logger logger = LoggerFactory.getLogger(MyBatisConfiguration.class);

    @Bean
    public PageHelper pageHelper() {
        logger.info("MyBatis PageHelper Register");
        PageHelper pageHelper = new PageHelper();
        Properties p = new Properties();
        p.setProperty("offsetAsPageNum", "true");
        p.setProperty("rowBoundsWithCount", "true");
        p.setProperty("pageSizeZero", "true");
        p.setProperty("reasonable", "false");
        pageHelper.setProperties(p);
        return pageHelper;
    }
}

對分頁進(jìn)行單元測試

    @Test
    public void testPage(){
        try{
            //刪除所有書籍
            bookDao.deleteAll();

            //創(chuàng)建8本書
            for(int i=1;i<=8;i++){
                bookDao.insertBook(new Book(Long.parseLong(i + ""), "book" + i, "author" + i, new Date()));
            }

            //根據(jù)書名模糊查詢,返回第一頁數(shù)據(jù),每頁最多5條數(shù)據(jù)
            PageHelper.startPage(1, 5);
            List<Book> books = bookDao.likeTitle("book");
            Assert.assertEquals(5,books.size());

            PageHelper.startPage(2, 5);
            books = bookDao.likeTitle("book");
            Assert.assertEquals(3,books.size());

        }catch (Exception ex){
            Assert.fail(ex.getMessage());
        }
    }

完整代碼戳這里: Chapter 4-1-2 - Spring Boot集成MyBatis訪問數(shù)據(jù)庫

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末个从,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子歪沃,更是在濱河造成了極大的恐慌信姓,老刑警劉巖,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件绸罗,死亡現(xiàn)場離奇詭異,居然都是意外死亡豆瘫,警方通過查閱死者的電腦和手機(jī)珊蟀,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人育灸,你說我怎么就攤上這事腻窒。” “怎么了磅崭?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵儿子,是天一觀的道長。 經(jīng)常有香客問我砸喻,道長柔逼,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任割岛,我火速辦了婚禮愉适,結(jié)果婚禮上诗芜,老公的妹妹穿的比我還像新娘埠通。我一直安慰自己,他們只是感情好狐肢,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布惠爽。 她就那樣靜靜地躺著癌蓖,像睡著了一般。 火紅的嫁衣襯著肌膚如雪婚肆。 梳的紋絲不亂的頭發(fā)上租副,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天,我揣著相機(jī)與錄音旬痹,去河邊找鬼附井。 笑死,一個(gè)胖子當(dāng)著我的面吹牛两残,可吹牛的內(nèi)容都是我干的永毅。 我是一名探鬼主播,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼人弓,長吁一口氣:“原來是場噩夢啊……” “哼沼死!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起崔赌,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤意蛀,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后健芭,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體县钥,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年慈迈,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了若贮。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,688評論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖谴麦,靈堂內(nèi)的尸體忽然破棺而出蠢沿,到底是詐尸還是另有隱情,我是刑警寧澤匾效,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布舷蟀,位于F島的核電站,受9級特大地震影響面哼,放射性物質(zhì)發(fā)生泄漏野宜。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一精绎、第九天 我趴在偏房一處隱蔽的房頂上張望速缨。 院中可真熱鬧,春花似錦代乃、人聲如沸旬牲。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽原茅。三九已至,卻和暖如春堕仔,著一層夾襖步出監(jiān)牢的瞬間擂橘,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工摩骨, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留通贞,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓恼五,卻偏偏與公主長得像昌罩,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子灾馒,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,573評論 2 353

推薦閱讀更多精彩內(nèi)容