Spring Boot中使用MyBatis詳解

今天給大家介紹如何在Spring Boot中使用MyBatis就珠,希望大家喜歡。

1. 創(chuàng)建項目

關于如何創(chuàng)建Spring Boot的項目剩晴,大家可以參考我的《Hello Spring Boot》里面有詳細介紹。

2. 導入依賴

在Spring Boot中使用MyBatis主要用到了三個依賴:MyBatis和Spring Boot 整合依賴、MySQL驅(qū)動依賴载碌、Druid依賴⌒品悖基于本文還需要另外兩個依賴:jsp解析器嫁艇、lombok。下面展示一下我的pom文件:

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

        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>
        <!--MyBatis和Spring Bot整合框架-->
        <!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter -->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.2</version>
        </dependency>
        <!--mysql驅(qū)動依賴-->
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <!-- Druid依賴-->
        <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.1.22</version>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>


        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>

        <resources>
            <!--注冊webapp資源目錄-->
            <resource>
                <directory>src/main/webapp</directory>
                <targetPath>META-INF/resources</targetPath>
                <includes>
                    <include>**/*.*</include>
                </includes>
            </resource>
            <!--注冊dao包下mybatis映射文件為資源目錄-->
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
        </resources>
    </build>

org.mybatis.spring.boot 這個依賴的版本號是不能省去弦撩,因為這個依賴是MyBatis整合的Spring Boot裳仆,而不是Spring Boot整合的它,所以不能省掉孤钦。
resources中的兩個配置分別是注冊webapp為資源目錄歧斟、注冊MyBatis的資源目錄纯丸。
看到這么多依賴肯定有小伙伴問,我是從哪里知道的静袖,大家可以訪問這個網(wǎng)址查找觉鼻。

3. 創(chuàng)建Jsp

如何在Spring Boot中使用Jsp大家可以參考《Spring Boot 使用jsp》創(chuàng)建兩個jsp文件分別是:index.jsp、success.jsp他們用來提交表單和展示結(jié)果队橙。

<%--
  Created by IntelliJ IDEA.
  User: zhangxianwei
  Date: 2020/4/12
  Time: 12:55 下午
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<form action="register" method="post">
    詩句:<input type="text" name="verse" style="width: 200px">
    <br>
    <br>
    作者:<input type="text" name="author" style="width: 200px">
    <br>
    <br>
    <input type="submit" value="提交">
</form>

</body>
</html>
<%--
  Created by IntelliJ IDEA.
  User: zhangxianwei
  Date: 2020/4/12
  Time: 1:26 下午
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<h5>提交成功</h5>

</body>
</html>
4.創(chuàng)建數(shù)據(jù)庫

使用Navicat創(chuàng)建了一個poetry的表:
示意圖
5.創(chuàng)建實體類

在項目的包名下創(chuàng)建一個目錄名為:bean,再創(chuàng)建一個PoetryBean的類:

package com.zxw.mybatis.bean;

import lombok.Data;

@Data
public class PoetryBean {
    private Integer id;
    private String verse;
    private String author;
}
6.創(chuàng)建dao層

在項目的包名下創(chuàng)建一個目錄名為:dao坠陈,再創(chuàng)建一個接口PoetryDao,不要忘記加上@Mapper注解捐康。

package com.zxw.mybatis.dao;

import com.zxw.mybatis.bean.PoetryBean;
import org.apache.ibatis.annotations.Mapper;

@Mapper
public interface PoetryDao {

    void insertVerse(PoetryBean poetryBean);
}

然后在resources目錄下創(chuàng)建與其對應的配置文件:PoetryDao.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.zxw.mybatis.dao.PoetryDao">
    <insert id="insertVerse">
     INSERT INTO poetry(verse,author ) VALUES (#{verse},#{author})
     </insert>
</mapper>

首先這里面的id要和上面的方法一一對應仇矾,然后再寫SQL語句就好了,這里推薦一個MybatisX的插件(類似于eventbus3-intellij-plugin這個插件)解总,裝上這個插件就可以直接定位到xml防止寫錯贮匕,而且這個插件很強大,感興趣的去它的官網(wǎng)花枫。

7.創(chuàng)建service

在項目的包名下創(chuàng)建一個目錄名為:service刻盐,再創(chuàng)建接口PoetryService:

package com.zxw.mybatis.service;

import com.zxw.mybatis.bean.PoetryBean;

public interface PoetryService {

    void addVerse(PoetryBean poetryBean);
}

創(chuàng)建實現(xiàn)類PoetryServiceImpl:

package com.zxw.mybatis.service;

import com.zxw.mybatis.bean.PoetryBean;
import com.zxw.mybatis.dao.PoetryDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class PoetryServiceImpl implements PoetryService {

    @Autowired
    PoetryDao poetryDao;

    @Override
    public void addVerse(PoetryBean poetryBean) {
        poetryDao.insertVerse(poetryBean);
    }
}

這個類中不要忘記加上@Service這個注解,我當時就是忘記加而報錯了劳翰。

8.創(chuàng)建Controller

在項目的包名下載創(chuàng)建一個目錄名為:controller敦锌,再創(chuàng)建類PoetryController:

package com.zxw.mybatis.controller;

import com.zxw.mybatis.bean.PoetryBean;
import com.zxw.mybatis.service.PoetryService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;

@Controller
public class PoetryController {

    @Autowired
    private PoetryService poetryService;

    @PostMapping("/register")
    private String registerVerse(PoetryBean poetryBean) {
        poetryService.addVerse(poetryBean);
        return "success";
    }
}

這個段代碼就是當詩詞提交成功后,返回success這個jsp用來通知提交成功佳簸。

9.配置

在application.properties文件中做一下配置:

# 視圖的前輟與后輟
spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp

# 注冊映射文件
mybatis.mapper-locations=classpath:PoetryDao.xml
# 注冊實體類別名
mybatis.type-aliases-package=com.zxw.mybatis.bean
# 注冊數(shù)據(jù)源類型
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
# 連接數(shù)據(jù)庫
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql:///db1
spring.datasource.username=root
spring.datasource.password=zxw12345
10.檢查

運行項目添加詩句檢查結(jié)果如圖:


示意圖
總結(jié)

以上就是在Spring Boot中使用MyBatis詳細步驟乙墙,總結(jié)如下:

  • 在pom文件找那個添加:MyBatis與Spring Boot整合依賴、MySQL驅(qū)動依賴生均,和Druid依賴听想。
  • 在配置文件中添加:映射文件、實體類別名疯特,及數(shù)據(jù)源哗魂。
  • 在Dao接口上添加@Mapper注解。

項目地址:HelloSpringBoot

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末漓雅,一起剝皮案震驚了整個濱河市录别,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌邻吞,老刑警劉巖组题,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異抱冷,居然都是意外死亡崔列,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來赵讯,“玉大人盈咳,你說我怎么就攤上這事”咭恚” “怎么了鱼响?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長组底。 經(jīng)常有香客問我丈积,道長,這世上最難降的妖魔是什么债鸡? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任江滨,我火速辦了婚禮,結(jié)果婚禮上厌均,老公的妹妹穿的比我還像新娘唬滑。我一直安慰自己,他們只是感情好莫秆,可當我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布间雀。 她就那樣靜靜地躺著悔详,像睡著了一般镊屎。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上茄螃,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天缝驳,我揣著相機與錄音,去河邊找鬼归苍。 笑死用狱,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的拼弃。 我是一名探鬼主播夏伊,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼吻氧!你這毒婦竟也來了溺忧?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤盯孙,失蹤者是張志新(化名)和其女友劉穎鲁森,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體振惰,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡歌溉,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了骑晶。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片痛垛。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡草慧,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出匙头,到底是詐尸還是另有隱情冠蒋,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布乾胶,位于F島的核電站抖剿,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏识窿。R本人自食惡果不足惜斩郎,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望喻频。 院中可真熱鬧缩宜,春花似錦、人聲如沸甥温。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽姻蚓。三九已至宋梧,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間狰挡,已是汗流浹背捂龄。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留加叁,地道東北人倦沧。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像它匕,于是被迫代替她去往敵國和親展融。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,527評論 2 349

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