首頁 > 軟體

SpringBoot MyBatis保姆級整合教學

2022-06-29 14:01:11

Spring Boot整合MyBatis

MyBatis 是一款優秀的持久層框架,Spring Boot官方雖然沒有對MyBatis進行整合,但是MyBatis團隊自行適配了對應的啟動器,進一步簡化了使用MyBatis進行資料的操作

基礎環境搭建

資料準備

在MySQL中,先建立了一個資料庫springbootdata,然後建立了兩個表t_article和t_comment並向表中插入資料。其中評論表t_comment的a_id與文章表t_article的主鍵id相關聯

# 建立資料庫
CREATE DATABASE springbootdata;
# 選擇使用資料庫
USE springbootdata;
# 建立表t_article並插入相關資料
DROP TABLE IF EXISTS t_article;
CREATE TABLE t_article (
id int(20) NOT NULL AUTO_INCREMENT COMMENT '文章id',
title varchar(200) DEFAULT NULL COMMENT '文章標題',
content longtext COMMENT '文章內容',
PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
INSERT INTO t_article VALUES ('1', 'Spring Boot基礎入門', '從入門到精通講解...');
INSERT INTO t_article VALUES ('2', 'Spring Cloud基礎入門', '從入門到精通講
解...');
# 建立表t_comment並插入相關資料
DROP TABLE IF EXISTS t_comment;
CREATE TABLE t_comment (
id int(20) NOT NULL AUTO_INCREMENT COMMENT '評論id',
content longtext COMMENT '評論內容',
author varchar(200) DEFAULT NULL COMMENT '評論作者',
a_id int(20) DEFAULT NULL COMMENT '關聯的文章id',
PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
INSERT INTO t_comment VALUES ('1', '很全、很詳細', 'lucy', '1');
INSERT INTO t_comment VALUES ('2', '贊一個', 'tom', '1');
INSERT INTO t_comment VALUES ('3', '很詳細', 'eric', '1');
INSERT INTO t_comment VALUES ('4', '很好,非常詳細', '張三', '1');
INSERT INTO t_comment VALUES ('5', '很不錯', '李四', '2');

建立專案引入相應的啟動器

編寫與資料庫表

編寫與資料庫表t_comment和t_article對應的實體類Comment和Article

public class Comment {
  private Integer id;
  private String content;
  private String author;
  private Integer aId;
}
public class Article {
  private Integer id;
  private String title;
  private String content;
}

編寫組態檔

在application.properties組態檔中進行資料庫連線設定

# MySQL資料庫連線設定
spring:
datasource:
 url: jdbc:mysql://localhost:3306/springbootdata?
 serverTimezone=UTC&characterEncoding=UTF-8
 username: root
 password: wu7787879

註解方式整合Mybatis

需求:實現通過ID查詢Comment資訊

(1)建立一個對t_comment表資料操作的介面CommentMapper

public interface CommentMapper {
  @Select("SELECT * FROM t_comment WHERE id =#{id}")
  public Comment findById(Integer id);
}

(2)在Spring Boot專案啟動類上新增@MapperScan(“xxx”)註解

@SpringBootApplication
@MapperScan("com.lagou.mapper")
public class Springboot02MybatisApplication {
  public static void main(String[] args) {
    SpringApplication.run(Springboot02MybatisApplication.class, args);
 }
}

(3)編寫測試方法

@RunWith(SpringRunner.class)
@SpringBootTest
class SpringbootPersistenceApplicationTests {
  @Autowired
  private CommentMapper commentMapper;
  @Test
  void contextLoads() {
    Comment comment = commentMapper.findById(1);
    System.out.println(comment);
 }
}

列印結果:

組態檔的方式整合MyBatis

第一、二步驟使用Free Mybatis plugin外掛生成

建立介面類

建立一個用於對資料庫表t_article資料操作的介面ArticleMapper

@Mapper
public interface ArticleMapper {
  public Article selectArticle(Integer id);
}

建立XML對映檔案

resources目錄下建立一個統一管理對映檔案的包mapper,並在該包下編寫與ArticleMapper介面方應的對映檔案ArticleMapper.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.lagou.mapper.ArticleMapper">
  <select id="selectArticle" resultType="Article">
   select * from Article
  </select>
</mapper>

設定XML對映檔案路徑

在專案中編寫的XML對映檔案,Spring Boot並無從知曉,所以無法掃描到該自定義編寫的XML組態檔,還必須在全域性組態檔application.properties中新增MyBatis對映檔案路徑的設定,同時需要新增實體類別名對映路徑,範例程式碼如下

mybatis:
#設定MyBatis的xml組態檔路徑
mapper-locations: classpath:mapper/*.xml
#設定XML對映檔案中指定的實體類別名路徑
type-aliases-package: com.lagou.base.pojo

編寫單元測試進行介面方法測試

@Autowired
  private ArticleMapper articleMapper;
  @Test
  void contextLoads2() {
    Article article = 	    articleMapper.selectByPrimaryKey(1);
    System.out.println(article);
 }

列印結果:

到此這篇關於SpringBoot MyBatis保姆級整合教學的文章就介紹到這了,更多相關SpringBoot MyBatis內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com