前言

详情参考:MyBatis-Plus 官网

一、Mybatis-Plus 简介

MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生

主要作用:

  • 自动生成单表的 CRUD 功能
  • 提供丰富的条件拼接方式
  • 全自动 ORM 类型持久层框架

二、快速入门

2.1 案例

第一步:准备数据库表

第二步:创建 boot 工程

第三步:pom.xml 引入依赖

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.3</version>
</parent>

<groupId>com.shameyanng</groupId>
<artifactId>mp-001-quick</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<!-- 测试环境 -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<!-- mybatis-plus -->
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.5</version>
</dependency>
<dependency>
<!-- 数据库相关配置启动器 -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<!-- druid启动器 -->
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-3-starter</artifactId>
<version>1.2.21</version>
</dependency>
<dependency>
<!-- 驱动类 -->
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>

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

第四步:编写 application.yml 配置文件和启动类

1
2
3
4
5
6
7
8
spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
druid:
url: jdbc:mysql://xxx
username: root
password: xxx
driver-class-name: com.mysql.cj.jdbc.Driver
1
2
3
4
5
6
7
@MapperScan("com.shameyang.mapper")
@SpringBootApplication
public class Main {
public static void main(String[] args) {
SpringApplication.run(Main.class, args);
}
}

第五步:实体类和 mapper 接口

1
2
3
4
5
@Data
public class Student {
private String sno;
private String sname;
}

继承 mybatis-plus 提供的基础 Mapper 接口,自带 CRUD 方法

1
2
3
public interface StuMapper extends BaseMapper<Student> {

}

第六步:测试和使用

1
2
3
4
5
6
7
8
9
10
11
12
@SpringBootTest
public class MybatisPlusTest {
@Resource
private StuMapper stuMapper;

@Test
public void testSelect() {
System.out.println("--- selectAll method test ---");
List<Student> studentList = stuMapper.selectList(null);
studentList.forEach(System.out::println);
}
}

2.2 总结

  • 集成 MyBatis-Plus 非常简单,只需引入 starter 工程,配置 mapper 扫描路径即可
  • mapper 接口继承 MP 提供的 BaseMapper 接口,自带 CRUD 方法,也不需要 XML 文件了
  • 注意:实体类名应和数据库表名一致,否则会找不到!

三、MyBatis-Plus 核心功能

3.1 Mapper CRUD 接口

说明:

  • 通用 CRUD 封装 BaseMapper 接口,为 Mybatis-Plus 启动时自动解析实体表关系映射转换为 Mybatis 内部对象注入容器
  • 泛型 T 为任意实体对象
  • 参数 Serializable 为任意类型主键,Mybatis-Plus 不推荐使用复合主键,约定每一张表都有自己的唯一 id 主键
  • 对象 Wrapper 为 条件构造器

Insert

1
2
// 插入一条记录
int insert(T entity);
类型 参数名 描述
T entity 实体对象

Delete

1
2
3
4
5
6
7
8
9
10
11
// 根据 entity 条件,删除记录
int delete(@Param(Constants.WRAPPER) Wrapper<T> wrapper);

// 删除(根据ID 批量删除)
int deleteBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);

// 根据 ID 删除
int deleteById(Serializable id);

// 根据 columnMap 条件,删除记录
int deleteByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);
类型 参数名 描述
Wrapper wrapper 实体对象封装操作类(可以为 null)
Collection<? extends Serializable> idList 主键 ID 列表(不能为 null 以及 empty)
Serializable id 主键 ID
Map<String, Object> columnMap 表字段 map 对象

Update

1
2
3
4
5
// 根据 whereWrapper 条件,更新记录
int update(@Param(Constants.ENTITY) T updateEntity, @Param(Constants.WRAPPER) Wrapper<T> whereWrapper);

// 根据 ID 修改
int updateById(@Param(Constants.ENTITY) T entity);
类型 参数名 描述
T entity 实体对象 (set 条件值,可为 null)
Wrapper updateWrapper 实体对象封装操作类(可以为 null,里面的 entity 用于生成 where 语句)

Select

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 根据 ID 查询
T selectById(Serializable id);

// 根据 entity 条件,查询一条记录
T selectOne(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

// 查询(根据ID 批量查询)
List<T> selectBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);

// 根据 entity 条件,查询全部记录
List<T> selectList(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

// 查询(根据 columnMap 条件)
List<T> selectByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);

// 根据 Wrapper 条件,查询全部记录
List<Map<String, Object>> selectMaps(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

// 根据 Wrapper 条件,查询全部记录。注意: 只返回第一个字段的值
List<Object> selectObjs(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

// 根据 entity 条件,查询全部记录(并翻页)
IPage<T> selectPage(IPage<T> page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

// 根据 Wrapper 条件,查询全部记录(并翻页)
IPage<Map<String, Object>> selectMapsPage(IPage<T> page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

// 根据 Wrapper 条件,查询总记录数
Integer selectCount(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
类型 参数名 描述
Serializable id 主键 ID
Wrapper queryWrapper 实体对象封装操作类(可以为 null)
Collection<? extends Serializable> idList 主键 ID 列表(不能为 null 以及 empty)
Map<String, Object> columnMap 表字段 map 对象
IPage page 分页查询条件(可以为 RowBounds.DEFAULT)

3.2 Service CRUD 接口

说明:

  • 通用 Service CRUD 封装 IService 接口,进一步封装 CRUD,采用 get 查询单行、remove 删除、list 查询集合、page 分页、前缀命名方式,区分 Mapper 层避免混淆
  • 泛型 T 为任意实体对象
  • 建议如果存在自定义通用 Service 方法的可能,请创建自己的 IBaseService 继承 Mybatis-Plus 提供的基类
  • 对象 Wrapper 为 条件构造器

对比 Mapper 接口 CRUD 区别

  • service 添加了批量方法
  • service 层的方法自动添加事务

接口使用方式

1
2
public interface UserService extends IService<User> {
}
1
2
3
@Service
public class UserServiceImpl extends ServiceImpl<UserMapper,User> implements UserService{
}

Save

1
2
3
4
5
6
7
8
// 插入一条记录(选择字段,策略插入)
boolean save(T entity);

// 插入(批量)
boolean saveBatch(Collection<T> entityList);

// 插入(批量)
boolean saveBatch(Collection<T> entityList, int batchSize);
类型 参数名 描述
T entity 实体对象
Collection entityList 实体对象集合
int batchSize 插入批次数量

SaveOrUpdate

1
2
3
4
5
6
7
8
9
10
11
// TableId 注解存在更新记录,否插入一条记录
boolean saveOrUpdate(T entity);

// 根据updateWrapper尝试更新,否继续执行saveOrUpdate(T)方法
boolean saveOrUpdate(T entity, Wrapper<T> updateWrapper);

// 批量修改插入
boolean saveOrUpdateBatch(Collection<T> entityList);

// 批量修改插入
boolean saveOrUpdateBatch(Collection<T> entityList, int batchSize);
类型 参数名 描述
T entity 实体对象
Wrapper updateWrapper 实体对象封装操作类 UpdateWrapper
Collection entityList 实体对象集合
int batchSize 插入批次数量

Remove

1
2
3
4
5
6
7
8
9
10
11
// 根据 queryWrapper 设置的条件,删除记录
boolean remove(Wrapper<T> queryWrapper);

// 根据 ID 删除
boolean removeById(Serializable id);

// 根据 columnMap 条件,删除记录
boolean removeByMap(Map<String, Object> columnMap);

// 删除(根据ID 批量删除)
boolean removeByIds(Collection<? extends Serializable> idList);
类型 参数名 描述
Wrapper queryWrapper 实体包装类 QueryWrapper
Serializable id 主键 ID
Map<String, Object> columnMap 表字段 map 对象
Collection<? extends Serializable> idList 主键 ID 列表

Update

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 根据 UpdateWrapper 条件,更新记录 需要设置sqlset
boolean update(Wrapper<T> updateWrapper);

// 根据 whereWrapper 条件,更新记录
boolean update(T updateEntity, Wrapper<T> whereWrapper);

// 根据 ID 选择修改
boolean updateById(T entity);

// 根据ID 批量更新
boolean updateBatchById(Collection<T> entityList);

// 根据ID 批量更新
boolean updateBatchById(Collection<T> entityList, int batchSize);
类型 参数名 描述
Wrapper updateWrapper 实体对象封装操作类 UpdateWrapper
T entity 实体对象
Collection entityList 实体对象集合
int batchSize 更新批次数量

Get

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 根据 ID 查询
T getById(Serializable id);

// 根据 Wrapper,查询一条记录。结果集,如果是多个会抛出异常,随机取一条加上限制条件 wrapper.last("LIMIT 1")
T getOne(Wrapper<T> queryWrapper);

// 根据 Wrapper,查询一条记录
T getOne(Wrapper<T> queryWrapper, boolean throwEx);

// 根据 Wrapper,查询一条记录
Map<String, Object> getMap(Wrapper<T> queryWrapper);

// 根据 Wrapper,查询一条记录
<V> V getObj(Wrapper<T> queryWrapper, Function<? super Object, V> mapper);
类型 参数名 描述
Serializable id 主键 ID
Wrapper queryWrapper 实体对象封装操作类 QueryWrapper
boolean throwEx 有多个 result 是否抛出异常
T entity 实体对象
Function<? super Object, V> mapper 转换函数

List

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 查询所有
List<T> list();

// 查询列表
List<T> list(Wrapper<T> queryWrapper);

// 查询(根据ID 批量查询)
Collection<T> listByIds(Collection<? extends Serializable> idList);

// 查询(根据 columnMap 条件)
Collection<T> listByMap(Map<String, Object> columnMap);

// 查询所有列表
List<Map<String, Object>> listMaps();

// 查询列表
List<Map<String, Object>> listMaps(Wrapper<T> queryWrapper);

// 查询全部记录
List<Object> listObjs();

// 查询全部记录
<V> List<V> listObjs(Function<? super Object, V> mapper);

// 根据 Wrapper 条件,查询全部记录
List<Object> listObjs(Wrapper<T> queryWrapper);

// 根据 Wrapper 条件,查询全部记录
<V> List<V> listObjs(Wrapper<T> queryWrapper, Function<? super Object, V> mapper);
类型 参数名 描述
Wrapper queryWrapper 实体包装类 QueryWrapper
Collection<? extends Serializable> idList 主键 ID 列表
Map<String, Object> columnMap 表字段 map 对象
Function<? super Object, V> mapper 转换函数

Page

1
2
3
4
5
6
7
8
9
10
11
// 无条件分页查询
IPage<T> page(IPage<T> page);

// 条件分页查询
IPage<T> page(IPage<T> page, Wrapper<T> queryWrapper);

// 无条件分页查询
IPage<Map<String, Object>> pageMaps(IPage<T> page);

// 条件分页查询
IPage<Map<String, Object>> pageMaps(IPage<T> page, Wrapper<T> queryWrapper);
类型 参数名 描述
IPage page 翻页对象
Wrapper queryWrapper 实体对象封装操作类 QueryWrapper

Count

1
2
3
4
5
// 查询总记录数
int count();

// 根据 Wrapper 条件,查询总记录数
int count(Wrapper<T> queryWrapper);
类型 参数名 描述
Wrapper queryWrapper 实体对象封装操作类 QueryWrapper

3.3 条件构造器

使用 MyBatis-Plus 提供的条件构造器,可以灵活、高效地构建查询条件

3.4.1 条件构造器继承结构

1
2
3
4
5
6
7
Wrapper # 条件构造抽象类,最顶端父类
|--- AbstractWrapper # 用于查询条件封装,生成 sql 的 where 条件
|--- QueryWrapper # 查询/删除条件封装
|--- UpdateWrapper # 修改条件封装
|--- AbstractLambdaWrapper # 使用 Lambda 语法
|--- LambdaQueryWrapper # 用于 Lambda 语法使用的查询 Wrapper
|--- LambdaUpdateWrapper # Lambda 更新封装 Wrapper

3.4.2 条件构造器的使用

示例代码:

1
2
3
4
5
6
7
8
9
10
// delete from user where name = "John" and age != 30 and email like "%@gmail.com%"
QueryWrapper<User> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("name", "John"); // 添加等于条件
queryWrapper.ne("age", 30); // 添加不等于条件
queryWrapper.like("email", "@gmail.com"); // 添加模糊匹配条件

// 链式调用
queryWrapper.eq("name", "John").ne("age", 30).like("email", "@gmail.com");

int i = xxxMapper.delete(queryWrapper);

3.4.3 条件构造器函数

点击查看所有函数

3.4 核心注解

3.5.1 @TableName

如果表名和实体类名相同(忽略大小写)可以省略该注解!
描述:表名注解,标识实体类对应的表
位置:实体类

1
2
3
4
5
6
7
@TableName("sys_user")
public class User {
private Long id;
private String name;
private Integer age;
private String email;
}

全局配置:

1
2
3
4
mybatis-plus: # mybatis-plus 的配置
global-config:
db-config:
table-prefix: sys_ # 表名前缀字符串

3.5.2 @TableId

描述:主键注解
位置:实体类主键字段

1
2
3
4
5
6
7
8
@TableName("sys_user")
public class User {
@TableId(value = "主键列名", type = IdType.XXX)
private Long id;
private String name;
private Integer age;
private String email;
}
属性 类型 必须指定 默认值 描述
value String “” 主键字段名
type Enum IdType.NONE 指定主键类型

IdType 属性常用值:

描述
AUTO 数据库 ID 自增
ASSIGN_ID(默认) 分配 ID(主键类型为 Number(Long )或 String)(since 3.3.0),使用接口IdentifierGenerator的方法nextId(默认实现类为DefaultIdentifierGenerator雪花算法)

全局修改主键策略:

1
2
3
4
5
6
7
8
9
10
mybatis-plus:
configuration:
# 配置 MyBatis 日志
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
global-config:
db-config:
# 配置 MyBatis-Plus 操作表的默认前缀
table-prefix: t_
# 配置 MyBatis-Plus 的主键策略
id-type: auto

3.5.3 雪花算法

雪花算法(Snowflake Algorithm)是一种用于生成唯一 ID 的算法。它由 Twitter 公司提出,广泛应用于分布式系统中,如微服务架构分布式数据库、分布式锁等场景,以满足全局唯一标识的需求

雪花算法生成的数字,需要使用 Long 或者 String 类型主键

3.5.4 @TableFiled

描述:字段注解(非主键)

1
2
3
4
5
6
7
8
9
@TableName("sys_user")
public class User {
@TableId
private Long id;
@TableField("nickname")
private String name;
private Integer age;
private String email;
}
属性 类型 必须指定 默认值 描述
value String “” 数据库字段名
exist boolean true 是否为数据库表字段

四、MyBatis-Plus 扩展

4.1 逻辑删除

使用逻辑删除,并不会删除表中的数据,而是更改数据的删除状态,便于后续的数据分析和恢复

逻辑删除的实现:

  • 数据库表中,添加逻辑删除字段,默认值为 0

  • 全局配置:配置 com.baomidou.mybatisplus.core.config.GlobalConfig$DbConfig
    application.yaml:

    1
    2
    3
    4
    5
    6
    mybatis-plus:
    global-config:
    db-config:
    logic-delete-field: deleted
    logic-delete-value: 1 # 逻辑已删除值(默认为 1)
    logic-not-delete-value: 0 # 逻辑未删除值(默认为 0)
  • 单一指定:实体类中,@TableLogic 添加逻辑删除属性

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    @Data
    public class User {

    // @TableId
    private Integer id;
    private String name;
    private Integer age;
    private String email;

    @TableLogic
    //逻辑删除字段,mybatis-plus下,默认 逻辑删除值为1 未逻辑删除为0
    private Integer deleted;
    }

4.2 乐观锁

MyBatis-Plus 中提供了乐观锁插件,可以解决并发数据的问题

具体实现:

  • 为每条数据添加一个版本号 version 字段
  • 取出记录时,获取当前 version
  • 更新时,检查 version 是否为最新
  • 如果是最新 version,执行更新后,version += 1
  • 如果不是最新 version,则更新失败

乐观锁插件使用:

  1. SpringBoot 注解配置:

    1
    2
    3
    4
    5
    6
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
    MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
    interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
    return interceptor;
    }
  2. 实体类字段上添加 @Version 注解

    数据库表中也要添加 version 字段,默认值为 1

    • 支持的数据类型只有:int、Integer、long、Long、Date、Timestamp、LocalDateTime
    • 仅支持 updateById(id)update(entity, wrapper) 方法
    1
    2
    @Version
    private Integer version;

4.3 MyBatisX 快速开发

官网查看