目录
Mybatis-plus简介
MP特性
框架的结构
MP快速入门
配置日志输出
主键生成策略
自动填充
方式一:数据库级别
方式二:代码控制级别(常用)
乐观锁和悲观锁
测试乐观锁单线程成功的例子
乐观锁多线程失败案例
查询操作
分页查询
删除操作
删除单个
删除多个
按map删除
逻辑删除
性能分析插件p6spy
条件查询器wrapper
isNotNull匹配不为空的
eq匹配相等
between查询区间
like模糊匹配
insql子查询
orderByDesc排序
代码自动生成器
mybatis-plus官网
r
mybatis-plus(简称MP)是一个mybatis的增强工具,在Mybatis的基础上自作增强不做改变,为简化开发、提高效率而生。Mybatis-plus提供了通用的mapper和service,可以在不便携任何sql语句的情况下,快速的实现对单表的crud、批量、逻辑删除、分页操作。
新建一个数据表
DROP TABLE IF EXISTS user;
CREATE TABLE user
(
id BIGINT(20) NOT NULL COMMENT '主键ID',
name VARCHAR(30) NULL DEFAULT NULL COMMENT '姓名',
age INT(11) NULL DEFAULT NULL COMMENT '年龄',
email VARCHAR(50) NULL DEFAULT NULL COMMENT '邮箱',
PRIMARY KEY (id)
);
插入一些数据
INSERT INTO user (id, name, age, email) VALUES
(1, 'Jone', 18, '[email protected]'),
(2, 'Jack', 20, '[email protected]'),
(3, 'Tom', 28, '[email protected]'),
(4, 'Sandy', 21, '[email protected]'),
(5, 'Billie', 24, '[email protected]');
idea中 新建一个模块。
pom.xml中
com.baomidou
mybatis-plus-boot-starter
3.4.2
mysql
mysql-connector-java
runtime
org.projectlombok
lombok
true
org.springframework.boot
spring-boot-starter-test
test
org.junit.vintage
junit-vintage-engine
mapper类下
package com.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.pojo.User;
import org.springframework.stereotype.Component;
@Component
public interface UserMapper extends BaseMapper {
}
pojo包下
import lombok.Data;
@Data
public class User {
private Long id;
private String name;
private Integer age;
private String email;
}
application.yaml配置文件下
#配置相关信息
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/mybatisplus?serverTimezone=UTC
username: root
password: 123456
测试类
import com.mapper.UserMapper;
import com.pojo.User;
import org.junit.jupiter.api.Test;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import java.util.List;
@SpringBootTest
@MapperScan("com.mapper")//扫描mapper,自动创建实现类
class MybatisPlusQuickApplicationTests {
@Autowired
private UserMapper userMapper;
@Test
void contextLoads() {
List users = userMapper.selectList(null);
users.forEach(System.out::println);
}
}
运行结果
在控制台中想要知道mp的执行过程,在配置文件配置
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
运行结果
由此可见,mp的底层还是调用了jdbc去创建SqlSession对象。
snowflake是Twitter开源的分布式ID生成算法,结果是一个long型的ID。其核心思想是:使用41bit作为毫秒数,10bit作为机器的ID(5个bit是数据中心,5个bit的机器ID),12bit作为毫秒内的流水号(意味着每个节点在每毫秒可以产生 4096 个 ID),最后还有一个符号位,永远是0
mybatisplus的主键生成策略就是采用这种雪花算法方式
测试插入
@Test
void insert() {
User user = new User();
user.setName("kc");
user.setAge(18);
user.setEmail("[email protected]");
userMapper.insert(user);
}
配置主键自增
在实体类对象中配置,前提是数据库表中也是设置自增的
@Data
public class User {
@TableId(type = IdType.AUTO)
private Long id;
private String name;
private Integer age;
private String email;
}
IdType源码
public enum IdType {
AUTO(0),数据库id自增
NONE(1),未设置主键
INPUT(2),手动输入
ID_WORKER(3),默认的全局唯一id
ID_WORKER_STR(3), ID_WORKER字符串表示法
UUID(4);//全局唯一id uuid
}
自动拼接动态sql
创建时间、修改时间,这些操作一般都是自动化完成的,不希望手动更新。
阿里巴巴开发手册:一般所有的数据库表:都要配上gmt_create、gmt_modified这两个字段,而且需要自动化。
在数据库表中新增这两个字段,默认值为CURRENT_TIMESTAMP,表示当前时间
数据库表通常是不能够修改的,在代码中使用自动填充
首先在对象上添加 @TableField字段
import java.util.Date;
@Data
public class User {
@TableId(type = IdType.AUTO)
private Long id;
private String name;
private Integer age;
private String email;
@TableField(fill = FieldFill.INSERT)//插入的时候执行
private Date creatTime;
@TableField(fill = FieldFill.INSERT_UPDATE)//插入和更新时执行
private Date updateTime;
}
然后自定义实现类 MyMetaObjectHandler,好让spring识别并做出处理
package com.handler;
import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
import lombok.extern.slf4j.Slf4j;
import org.apache.ibatis.reflection.MetaObject;
import org.springframework.stereotype.Component;
import java.util.Date;
@Slf4j
@Component//得交给spring容器管理
public class MyMetaObjectHandler implements MetaObjectHandler {
@Override
public void insertFill(MetaObject metaObject) {
log.info("start insert fill...");
//setFieldValByName(String fieldName, Object fieldVal, MetaObject metaObject)
this.setFieldValByName("creatTime", new Date(),metaObject);
this.setFieldValByName("updateTime", new Date(),metaObject);
}
@Override
public void updateFill(MetaObject metaObject) {
log.info("start update fill...");
this.setFieldValByName("updateTime", new Date(),metaObject);
}
}
测试插入
@Test
void insert() {
User user = new User();
user.setName("autoInertTest");
user.setAge(123);
user.setEmail("[email protected]");
userMapper.insert(user);
}
运行结果
测试更新
@Test
void update() {
User user = new User();
user.setId(5L);
user.setName("kongchaoAfter");
user.setAge(1222);
user.setEmail("[email protected]");
userMapper.updateById(user);
}
运行结果
乐观锁:顾名思义十分乐观,他总是认为不会出现问题,无论干什么都不去上锁,如果出现了问题,在次更新值测试
在数据库中新增字段version,在实体类中也要增加对应的,使用@Version表示他是一个乐观锁
乐观锁:先查询,获取它的版本号,然后在一系列的操作后,让他的版本号+1,前提是这个版本号还是之前查出来的那个版本号。
@Version//乐观锁
private Integer version;
写一个配置类
@Configuration
@MapperScan("com.mapper")
public class MyBatisPlusConfig {
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
return interceptor;
}
}
更新下
@Test
void update() {
User user = userMapper.selectById(5L);
user.setName("kongchaoAfter");
user.setAge(21);
user.setEmail("[email protected]");
userMapper.updateById(user);
}
说明:
newVersion = oldVersion + 1
newVersion
会回写到 entity
中updateById(id)
与 update(entity, wrapper)
方法update(entity, wrapper)
方法下, wrapper
不能复用!!!@Test
void update2() {
//线程1
User user = userMapper.selectById(5L);
user.setName("kongchao1");
user.setAge(11);
user.setEmail("[email protected]");
//模拟另一个线程插队
User user2 = userMapper.selectById(5L);
user2.setName("kongchao2");
user2.setAge(22);
user2.setEmail("[email protected]");
userMapper.updateById(user2);
//若没有乐观锁,则会覆盖user2的操作
userMapper.updateById(user);
}
数据库
运行结果
// 测试查询
@Test
public void testSelectById(){
User user = userMapper.selectById(1L);
System.out.println(user);
}
// 测试批量查询!
@Test
public void testSelectByBatchId(){
List users = userMapper.selectBatchIds(Arrays.asList(1, 2, 3));
users.forEach(System.out::println);
}
@SpringBootTest
@MapperScan("com.mapper")//扫描mapper,自动创建实现类
class MybatisPlusQuickApplicationTests {
@Autowired
private UserMapper userMapper;
//按条件查询之一使用map操作
@Test
public void testSelectByBatchIds(){
HashMap map = new HashMap<>();
// 自定义要查询
map.put("name","kc");
map.put("age",18);
List users = userMapper.selectByMap(map);
users.forEach(System.out::println);
}
}
在配置类中加入分页插件
@Configuration
@MapperScan("com.mapper")
public class MyBatisPlusConfig {
// 分页插件
@Bean
public PaginationInterceptor paginationInterceptor(){
return new PaginationInterceptor();
}
}
在测试类中测试
//测试分页查询
@Test
public void pageTest(){
//第一页,每页三个数据
Page page=new Page<>(1, 3);
userMapper.selectPage(page, null);
page.getRecords().forEach(System.out::print);
}
可以获取各种参数
运行结果
@Test
public void deleteById(){
userMapper.deleteById(1583366844257988614L);
}
//删除多个
@Test
public void deleteByIds(){
userMapper.deleteBatchIds(Arrays.asList(1583366844257988612L,1583366844257988613L));
}
//通过map删除
@Test
public void deleteMap(){
HashMap hashMap=new HashMap<>();
hashMap.put("name", "kc");
userMapper.deleteByMap(hashMap);
}
物理删除:从数据库中移除
逻辑删除:数据还存在数据库中,是增加了一个deleted字段,以这个字段作为条件,当字段=1时不显示这条数据
这个功能类似于回收站。并没有真正删除。
在数据库中添加字段deleted然后在实体类中也加入,并带上注解
@TableLogic//逻辑删除
private Integer deleted;
在application.yaml配置文件中配置
mybatis-plus:
global-config:
db-config:
# 没有逻辑删除的显示为0,否则显示1
logic-delete-value: 1
logic-not-delete-value: 0
测试之前的删除
//逻辑删除单个
@Test
public void deleteById(){
userMapper.deleteById(6L);
}
运行结果,删除只是将deleted字段变为1
测试查询
// 测试查询
@Test
public void testSelectById(){
User user = userMapper.selectById(6L);
}
运行结果,发现也会加上deleted=0的条件
在平时的使用中会遇到一些比较慢的sql
pom.xml导入p6spy坐标
p6spy
p6spy
3.9.0
application.yaml配置文件中
#配置相关信息
spring:
datasource:
# driver-class-name: com.mysql.cj.jdbc.Driver
driver-class-name: com.p6spy.engine.spy.P6SpyDriver
#
url: jdbc:p6spy:mysql://localhost:3306/mybatisplus?useSSL=false&serverTimezone=GMT%2B8
# url: jdbc:mysql://localhost:3306/mybatisplus?serverTimezone=UTC
username: root
password: 123456
在resource新建spy.properties
driverlist=com.mysql.cj.jdbc.Driver
logMessageFormat=com.p6spy.engine.spy.appender.MultiLineFormat
#logMessageFormat=com.p6spy.engine.spy.appender.SingleLineFormat
databaseDialectDateFormat=yyyy-MM-dd HH:mm:ss
appender=com.p6spy.engine.spy.appender.StdoutLogger
测试代码
// 测试批量查询!
@Test
public void testSelectByBatchId(){
List users = userMapper.selectBatchIds(Arrays.asList(1, 2, 3));
users.forEach(System.out::println);
}
运行结果
官网查看mp条件构造器
@SpringBootTest
public class TestWrapper {
@Autowired
private UserMapper userMapper;
@Test
public void test1(){
QueryWrapper wrapper=new QueryWrapper<>();
//查询name字段不为空,且年龄大于等于15的
//wrapper返回的还是对象,所以可以直接.操作
wrapper.isNotNull("name").ge("age", 15);
userMapper.selectList(wrapper);
}
}
运行结果,条件构造器的本质就是省sql语句的编写,可以用来做些判断
@Test
public void test2(){
QueryWrapper wrapper=new QueryWrapper<>();
//查询name为kongchao的
wrapper.eq("name", "kongchao");
userMapper.selectOne(wrapper);
}
@Test
public void test3(){
QueryWrapper wrapper=new QueryWrapper<>();
//查询年龄在10-18岁的(闭区间)
wrapper.between("age", 10, 18);
userMapper.selectList(wrapper);
}
@Test
public void test4(){
QueryWrapper wrapper=new QueryWrapper<>();
//名字中不含o,邮箱是以t开头 (t%)
wrapper.notLike("name", "o").likeRight("email", "t");
userMapper.selectList(wrapper);
}
@Test
public void test5(){
QueryWrapper wrapper=new QueryWrapper<>();
wrapper.inSql("id", "select id from user where age>=20");
userMapper.selectList(wrapper);
}
@Test
public void test6(){
//id降序排序
QueryWrapper wrapper=new QueryWrapper<>();
wrapper.orderByDesc("id");
userMapper.selectList(wrapper);
}
pom.xml下
com.baomidou
mybatis-plus-generator
3.4.1
org.apache.velocity
velocity-engine-core
2.0
com.alibaba
fastjson
1.2.47
com.baomidou
mybatis-plus-boot-starter
3.4.2
p6spy
p6spy
3.9.0
com.alibaba
druid
1.2.12
log4j
log4j
1.2.17
io.springfox
springfox-swagger-ui
2.7.0
org.springframework.boot
spring-boot-starter-thymeleaf
org.springframework.boot
spring-boot-devtools
org.springframework.boot
spring-boot-configuration-processor
mysql
mysql-connector-java
runtime
org.projectlombok
lombok
true
org.springframework.boot
spring-boot-starter-test
test
org.junit.vintage
junit-vintage-engine
自动生成的代码
package conf;
import com.baomidou.mybatisplus.generator.config.GlobalConfig;
import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.generator.AutoGenerator;
import com.baomidou.mybatisplus.generator.config.DataSourceConfig;
import com.baomidou.mybatisplus.generator.config.PackageConfig;
import com.baomidou.mybatisplus.generator.config.StrategyConfig;
import com.baomidou.mybatisplus.generator.config.po.TableFill;
import com.baomidou.mybatisplus.generator.config.rules.DateType;
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;
import java.util.ArrayList;
public class AutoMP {
// 代码自动生成器
public static void main(String[] args) {
// 需要构建一个 代码自动生成器 对象
AutoGenerator mpg = new AutoGenerator();
// 配置策略
// 1、全局配置
GlobalConfig gc = new GlobalConfig();
String projectPath = System.getProperty("user.dir");
gc.setOutputDir(projectPath+"/src/main/java");
gc.setAuthor("执久呀");
gc.setOpen(false);
gc.setFileOverride(false); // 是否覆盖
gc.setServiceName("%sService"); // 去Service的I前缀
gc.setIdType(IdType.ID_WORKER);
gc.setDateType(DateType.ONLY_DATE);
gc.setSwagger2(true);
mpg.setGlobalConfig(gc);
//2、设置数据源
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://localhost:3306/mybatisplus?useSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8");
dsc.setDriverName("com.mysql.cj.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("123456");
dsc.setDbType(DbType.MYSQL);
mpg.setDataSource(dsc);
//3、包的配置
PackageConfig pc = new PackageConfig();
pc.setModuleName("blog");
pc.setParent("autopage");
pc.setEntity("pojo");
pc.setMapper("mapper");
pc.setService("service");
pc.setController("controller");
mpg.setPackageInfo(pc);
//4、策略配置
StrategyConfig strategy = new StrategyConfig();
strategy.setInclude("user"); // 设置要映射的表名
strategy.setNaming(NamingStrategy.underline_to_camel);
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
strategy.setEntityLombokModel(true); // 自动lombok;
strategy.setLogicDeleteFieldName("deleted");
// 自动填充配置
TableFill gmtCreate = new TableFill("create_time", FieldFill.INSERT);
TableFill gmtModified = new TableFill("update_time",FieldFill.INSERT_UPDATE);
ArrayList tableFills = new ArrayList<>();
tableFills.add(gmtCreate);
tableFills.add(gmtModified);
strategy.setTableFillList(tableFills);
// 乐观锁
strategy.setVersionFieldName("version");
strategy.setRestControllerStyle(true);
strategy.setControllerMappingHyphenStyle(true); //localhost:8080/hello_id_2
mpg.setStrategy(strategy);
mpg.execute(); //执行
}
}