• 干货必看|Spring Boot整合MyBatis框架详解


    在开发中,我们通常会对数据库的数据进行操作,Sprirng Boot对关系型数据库和非关系型数据库的访问操作都提供了非常好的整合支持。所以今天壹哥就给大家讲解一下,如何在SpringBoot环境中整合Mybatis框架,请大家认真看哦。

    一. Spring Boot数据访问概述

    Spring Data是Spring提供的一个用于简化数据库访问、支持云服务的开源框架。它是一个伞形项目,包含了大量关系型数据库及非关系型数据库的数据访问解决方案,其设计目的是使我们可以快速且简单地使用各种数据访问技术。Spring Boot默认采用整合Spring Data的方式统一处理数据访问层,通过添加大量自动配置,引入各种数据访问模板xxxTemplate以及统一的Repository接口,从而达到简化数据访问层的操作。

    Spring Data提供了多种类型数据库支持,Spring Boot对Spring Data支持的数据库进行了整合管理,提供了各种依赖启动器。通过一张表罗列Spring Boot提供的常见数据库依赖启动器。

    名称

    描述

    mybatis-spring-boot-starter

    MyBatis启动器

    mybatis-plus-boot-starter

    MyBatis-Plus启动器

    spring-boot-starter-data-jpa

    Spring Data JPA与Hibernate的启动器

    spring- boot starter-data-redis

    Redis键值数据存储与Spring Data Redis和Jedis客户端的启动器

    spring-boot-starter-data-neo4j

    Neo4j图数据库和Spring Data Neo4j的启动器

    spring-boot-starter-data-mongodb

    MongoDB和Spring Data MongoDB的启动器

    如果你想学习更多SpringBoot的内容,请查看壹哥之前的SpringBoot专栏!

    SpringBoot2.x系列教程汇总-从入门到精通

    二. Spring Boot整合MyBatis实现

    MyBatis是一款优秀的持久层框架,它支持定制化SQL、存储过程以及高级映射,避免了几乎所有的JDBC代码和手动设置参数以及获取结果集。MyBatis可以使用简单的XML或注解配置和映射原生信息,并将接口和Java的POJO(Plain Old Java Objects,普通Java对象)映射成数据库中的记录。

    MyBatis作为操作数据库的流行框架,Spring Boot没有提供MyBatis场景依赖,但是MyBatis开发团队自己适配了Spring Boot,提供了mybatis-spring-starter依赖启动器实现数据访问操作。进一步简化了MyBatis对数据的操作。

    1. 基础环境搭建

    实现Spring Boot与数据访问层框架(例如MyBatis)的整合非常简单,主要是引入对应的依赖启动器,并进行数据库相关参数设置即可。

    1.1 数据准备

    在MySQL中创建一个名称为springbootdata的数据库。

    1. # 创建数据库
    2. CREATE DATABASE springbootdata character SET utf8;

    在该数据库中创建两个表t_article和t_comment。

    1. # 选择使用数据库
    2. USE springbootdata;
    3. # 创建文章表t_article并插入相关数据
    4. DROP TABLE IF EXISTS t_article;
    5. CREATE TABLE t_article (
    6. id int(11) NOT NULL AUTO_INCREMENT COMMENT '文章id',
    7. title varchar(50) NOT NULL COMMENT '文章标题',
    8. content longtext COMMENT '文章具体内容',
    9. PRIMARY KEY (id)
    10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    11. INSERT INTO t_article VALUES ('1', 'SSM框架基础教程', '从入门到精通...');
    12. INSERT INTO t_article VALUES ('2', 'SPringBoot框架基础教程', '从入门到精通...');
    13. # 创建评论表t_comment并插入相关数据
    14. DROP TABLE IF EXISTS t_comment;
    15. CREATE TABLE t_comment (
    16. id int(11) NOT NULL AUTO_INCREMENT COMMENT '评论id',
    17. article_id int(11) NOT NULL COMMENT '关联的文章id',
    18. content longtext COMMENT '评论内容',
    19. author varchar(200) DEFAULT NULL COMMENT '评论用户用户名',
    20. PRIMARY KEY (id)
    21. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    22. INSERT INTO t_comment VALUES ('1', '1', '内容很详细', '明明');
    23. INSERT INTO t_comment VALUES ('2', '1', '已三连', '红红');
    24. INSERT INTO t_comment VALUES ('3', '1', '很不错', '小王');
    25. INSERT INTO t_comment VALUES ('4', '1', '赞一个', '东东');
    26. INSERT INTO t_comment VALUES ('5', '2', '内容全面', '方方');

    1.2 搭建项目

    创建一个项目名称为chapter03的Spring Initializr类型的项目。在Dependencies依赖中选择SQL模块中的MySQL和MyBatis依赖。

    然后编写数据库表对应的实体类。在com.cy.domain包下,并在该包中编写与数据库表t_article和t_comment对应的实体类Comment和Article类。

    (1) 在com.cy.domain包下创建Comment实体类。

    1. package com.cy.domain;
    2. /** 评论实体类 */
    3. public class Comment {
    4. private Integer id;
    5. private Integer articleId;
    6. private String content;
    7. private String author;
    8. // Generate: Getter and Setter、toString()
    9. }

    (2) 在com.cy.domain包下创建Article实体类。

    1. package com.cy.domain;
    2. import java.util.List;
    3. /** 文章实体类 */
    4. public class Article {
    5. private Integer id;
    6. private String title;
    7. private String content;
    8. private List commentList;
    9. // Generate: Getter and Setter、toString()
    10. }

    1.3 编写配置文件

    首先在application.properties配置文件中编写对应的MySQL数据库连接配置。

    1. # MySQL数据库连接配置
    2. spring.datasource.url=jdbc:mysql://localhost:3306/springbootdata?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=UTC
    3. spring.datasource.username=root
    4. spring.datasource.password=123456

    然后对数据源类型选择配置。Spring Boot 1.x版本默认使用的是tomcat.jdbc数据源,Sprng Boot 2.x版本默认使用的是Hikari数据源。如果使用其他数据源,还需要进行额外配置。这里选择使用阿里巴巴的Druid数据源。在pom.xml文件中添加Druid数据源的依赖启动器。

    1. <dependency>
    2. <groupId>com.alibabagroupId>
    3. <artifactId>druid-spring-boot-starterartifactId>
    4. <version>1.1.17version>
    5. dependency>

    引入的druid-spring-boot-starter依赖,是阿里巴巴为了迎合Spring Boot项目而适配的Druid数据源启动器,当在pom.xml文件中引入该启动器后,不需要再进行其他额外配置,Spring Boot项目会自动识别配置Druid数据源。

    上述配置的Druid数据源启动器内部已经初始化了一些运行参数(例如initialSize、maxActive等),如果开发过程中需要修改第三方Druid的运行参数,则必须在全局配置文件中修改。

    1. # MySQL数据库连接配置
    2. spring.datasource.url=jdbc:mysql://localhost:3306/springbootdata?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=UTC
    3. spring.datasource.username=root
    4. spring.datasource.password=123456
    5. # 添加并配置第三方数据源Druid
    6. # 数据源类型
    7. spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
    8. # 初始化连接数
    9. spring.datasource.initialSize=20
    10. # 最小空闲数
    11. spring.datasource.minIdle=10
    12. # 最大连接数
    13. spring.datasource.maxActive=100

    在application.properties中添加上述配置后,会发现配置的initialSize、minIdle和maxActive属性底色为黄色(IDEA开发工具中的显示色)。这是因为在Spring Boot提供的数据源自动配置类org.springframework.boot.autoconfigure.jdbc.DataSourceProperties中,没有与这些参数对应的默认属性,所以这些设置的属性值无法识别和生效。因此需要编写一个自定义配置类,将配置文件中的属性注入到Druid数据源属性中。

    接着我们要在com.cy.config包下创建一个DataSourceConfig自定义配置类,对Druid数据源属性值进行注入。

    1. package com.cy.config;
    2. import com.alibaba.druid.pool.DruidDataSource;
    3. import org.springframework.boot.context.properties.ConfigurationProperties;
    4. import org.springframework.context.annotation.Bean;
    5. import org.springframework.context.annotation.Configuration;
    6. import javax.sql.DataSource;
    7. @Configuration
    8. public class DataSourceConfig {
    9. @Bean
    10. @ConfigurationProperties(prefix = "spring.datasource")
    11. public DataSource getDruid() {
    12. return new DruidDataSource();
    13. }
    14. }

    2. 使用注解的方式整合MyBatis

    创建Mapper接口文件。在com.cy.mapper包下创建一个用于对数据库表t_comment数据操作的接口CommentMapper。

    1. package com.cy.mapper;
    2. import com.cy.domain.Comment;
    3. import org.apache.ibatis.annotations.*;
    4. @Mapper
    5. public interface CommentMapper {
    6. @Select("SELECT * FROM t_comment WHERE id=#{id}")
    7. Comment findById(Integer id);
    8. @Insert("INSERT INTO t_comment(article_id,content,author) " +
    9. "values (#{articleId},#{content},#{author})")
    10. Integer insertComment(Comment comment);
    11. @Update("UPDATE t_comment SET content=#{content} WHERE id=#{id}")
    12. Integer updateComment(Comment comment);
    13. @Delete("DELETE FROM t_comment WHERE id=#{id}")
    14. Integer deleteComment(Integer id);
    15. }

    说明:在对应的接口类上添加@Mapper注解,如果编写的Mapper接口过多时,需要重复为每一个接口文件添加@Mapper注解,为了避免这种麻烦,可以直接在Spring Boot项目启动类上添加@MapperScan("xxx")注解,参数必须指定需要扫描的具体包名。

    然后在com.cy测试包下创建MyBatisTests类,并在MyBatisTests类中引入CommentMapper接口,并对接口中方法进行测试。

    1. package com.cy;
    2. import com.cy.domain.Comment;
    3. import com.cy.mapper.CommentMapper;
    4. import org.junit.jupiter.api.Test;
    5. import org.springframework.beans.factory.annotation.Autowired;
    6. import org.springframework.boot.test.context.SpringBootTest;
    7. @SpringBootTest
    8. public class MyBatisTests {
    9. @Autowired
    10. private CommentMapper commentMapper;
    11. @Test
    12. public void findById() {
    13. Comment comment = commentMapper.findById(1);
    14. // Comment{id=1, articleId=null, content='内容很详细', author='明明'}
    15. System.out.println(comment);
    16. }
    17. @Test
    18. public void insertComment() {
    19. Comment comment = new Comment();
    20. comment.setArticleId(2);
    21. comment.setContent("文章写的很棒");
    22. comment.setAuthor("张三");
    23. commentMapper.insertComment(comment);
    24. }
    25. @Test
    26. public void updateComment() {
    27. Comment comment = new Comment();
    28. comment.setId(6);
    29. comment.setContent("赞赞赞");
    30. commentMapper.updateComment(comment);
    31. }
    32. @Test
    33. public void deleteComment() {
    34. commentMapper.deleteComment(6);
    35. }
    36. }

    我们会发现控制台中查询的Comment的articleId属性值为null,没有映射成功。这是因为编写的实体类Comment中使用了驼峰命名方式将t_comment表中的article_id字段设计成了articleId属性,所以无法正确映射查询结果。为了解决上述由于驼峰命名方式造成的表字段值无法正确映射到类属性的情况,可以在Spring Boot全局配置文件application.properties中添加开启驼峰命名匹配映射配置。

    1. # 开启驼峰命名匹配映射
    2. mybatis.configuration.map-underscore-to-camel-case=true

    3. 使用配置文件的方式整合MyBatis

    Spring Boot与MyBatis整合使用时,不仅支持注解方式,还支持XML配置文件的方式。在com.cy.mapper包中创建一个操作数据表t_article的接口ArticleMapper。

    1. package com.cy.mapper;
    2. import com.cy.domain.Article;
    3. import org.apache.ibatis.annotations.Mapper;
    4. @Mapper
    5. public interface ArticleMapper {
    6. Article findArticleById(Integer id);
    7. Integer updateArticle(Article article);
    8. }

    创建XML映射文件。在resources目录下,创建一个统一管理映射文件的包mapper,并在该包下编写与ArticleMapper接口对应的映射文件ArticleMapper.xml。

    1. "1.0" encoding="UTF-8" ?>
    2. mapper
    3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
    4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
    5. <mapper namespace="com.cy.mapper.ArticleMapper">
    6. <resultMap id="articleWithComment" type="Article">
    7. <id property="id" column="id" />
    8. <result property="title" column="title" />
    9. <result property="content" column="content" />
    10. <collection property="commentList" ofType="Comment">
    11. <id property="id" column="id" />
    12. <result property="articleId" column="article_id" />
    13. <result property="content" column="content" />
    14. <result property="author" column="author" />
    15. collection>
    16. resultMap>
    17. <select id="findArticleById" resultMap="articleWithComment">
    18. SELECT a.*, c.*
    19. FROM t_article a, t_comment c
    20. WHERE a.id = c.article_id AND a.id = #{id}
    21. select>
    22. <update id="updateArticle" parameterType="Article">
    23. UPDATE t_article
    24. <set>
    25. <if test="title !=null and title !=''">
    26. title=#{title},
    27. if>
    28. <if test="content !=null and content !=''">
    29. content=#{content}
    30. if>
    31. set>
    32. WHERE id=#{id}
    33. update>
    34. mapper>

    配置XML映射文件路径。在全局配置文件application.properties中添加MyBatis映射文件路径的配置,同时需要添加实体类别名映射路径。

    1. # 配置MyBatis的XML配置文件位置
    2. mybatis.mapper-locations=classpath:mapper/*.xml
    3. # 配置XML映射文件中指定的实体类别名路径
    4. mybatis.type-aliases-package=com.cy.domain

    最后编写单元测试进行接口方法测试,在测试类MyBatisTests中对接口方法进行测试。

    1. @Autowired
    2. private ArticleMapper articleMapper;
    3. @Test
    4. public void findArticleById() {
    5. Article article = articleMapper.findArticleById(1);
    6. System.out.println(article);
    7. }
    8. @Test
    9. public void updateArticle() {
    10. Article article = new Article();
    11. article.setId(1);
    12. article.setTitle("SSM高级开发");
    13. article.setContent("高级进阶内容");
    14. Integer rows = articleMapper.updateArticle(article);
    15. System.out.println(rows);
    16. }

    现在你知道如何在SpringBoot中整合Mybatis了吗?如果你还有什么疑问,可以在评论区给壹哥留言哦。

  • 相关阅读:
    DFS和BFS概念及实践
    Visual Studio 2022使用MinGW来编译调试C/C++程序
    ssh免密登陆
    如何使用Redis?
    栈的基本操作(C语言实现)
    一文搞懂数据仓库分层模型
    【C++11数据结构与算法】C++ 栈
    Linux bash介绍与使用
    【保姆级讲解下QT6.3】
    php服装商城网站毕业设计源码241505
  • 原文地址:https://blog.csdn.net/syc000666/article/details/128108711