Mybatis-Plus
https://www.kuangstudy.com/bbs/1366329082232467457
https://blog.csdn.net/qq_43649223/article/details/108885374?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522163599762616780269885191%2522%252C%2522scm%2522%253A%252220140713.130102334..%2522%257D&request_id=163599762616780269885191&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~all~sobaiduend~default-2-108885374.pc_search_all_es&utm_term=Mybatis-Plus%E7%8B%82%E7%A5%9E&spm=1018.2226.3001.4187
笔记
特性
无侵入:只做增强不做改变,引入它不会对现有工程产生影响,如丝般顺滑
损耗小:启动即会自动注入基本 CURD,性能基本无损耗,直接面向对象操作,BaseMapper
强大的 CRUD 操作:内置通用 Mapper、通用 Service,仅仅通过少量配置即可实现单表大部分 CRUD 操作,更有强大的条件构造器,满足各类使用需求,以后简单的CRUD操作,不用自己编写了 !
支持 Lambda 形式调用:通过 Lambda 表达式,方便的编写各类查询条件,无需再担心字段写错
支持主键自动生成:支持多达 4 种主键策略(内含分布式唯一 ID 生成器 - Sequence),可自由配置,完美解决主键问题
支持 ActiveRecord 模式:支持 ActiveRecord 形式调用,实体类只需继承 Model 类即可进行强大的 CRUD 操作
支持自定义全局通用操作:支持全局通用方法注入( Write once, use anywhere )
内置代码生成器:采用代码或者 Maven 插件可快速生成 Mapper 、 Model 、 Service 、 Controller 层代码,支持模板引擎,更有超多自定义配置等您来使用(自动帮你生成代码)
内置分页插件:基于 MyBatis 物理分页,开发者无需关心具体操作,配置好插件之后,写分页等同于普通 List 查询
分页插件支持多种数据库:支持 MySQL、MariaDB、Oracle、DB2、H2、HSQL、SQLite、Postgre、SQLServer 等多种数据库
内置性能分析插件:可输出 Sql 语句以及其执行时间,建议开发测试时启用该功能,能快速揪出慢查询
内置全局拦截插件:提供全表 delete 、 update 操作智能分析阻断,也可自定义拦截规则,预防误操作
1.快速入门 官方链接:https://baomidou.com/guide/\
使用第三方插件:
导入对应的依赖
研究依赖如何配置
代码如何编写
提高扩展技术能力
步骤 1.创建数据库 mybatis_plus
2.创建表
1 2 3 4 5 6 7 8 9 10 11 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 ) );
插入数据
1 2 3 4 5 6 7 8 DELETE FROM user ;INSERT INTO user (id , name , age, email) VALUES (1 , 'Jone' , 18 , 'test1@baomidou.com' ), (2 , 'Jack' , 20 , 'test2@baomidou.com' ), (3 , 'Tom' , 28 , 'test3@baomidou.com' ), (4 , 'Sandy' , 21 , 'test4@baomidou.com' ), (5 , 'Billie' , 24 , 'test5@baomidou.com' );
3.编写项目,初始化项目! 使用SpringBoot初始化!
4.导入依赖
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <dependency > <groupId > mysql</groupId > <artifactId > mysql-connector-java</artifactId > </dependency > <dependency > <groupId > org.projectlombok</groupId > <artifactId > lombok</artifactId > </dependency > <dependency > <groupId > com.baomidou</groupId > <artifactId > mybatis-plus-boot-starter</artifactId > <version > 3.0.5</version > </dependency >
说明:我们使用mybatis-plus 可以节省我们大量的代码,尽量不要同时导入mybatis和mybatis-plus因为版本有差异!
5.连接数据库!这一步和mybatis相同!
1 2 3 4 5 6 7 spring.datasource.username=codeyuaiiao spring.datasource.password=3615yuhaijiao spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus?useSSL=false&useUnicode=true&characterEncoding=utf-8 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
(传统的方式pojo-dao(连接mybatis,配置mapper.xml文件)-service-controller)
6.使用了mybatis-plus之后
1 2 3 4 5 6 7 8 @Data @AllArgsConstructor @NoArgsConstructor public class User { private Long id; private String name; private Integer age; private String email;
1 2 3 4 5 6 7 8 9 10 import com.baomidou.mybatisplus.core.mapper.BaseMapper;import com.codeyuaiiao.pojo.User;import org.springframework.stereotype.Repository;@Repository public interface UserMapper extends BaseMapper <User > { }
注意点:需要在主启动类MybatisPlusApplication上扫描我们Mapper包下的所有接口
@MapperScan("com.zjc.mapper")
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 @SpringBootTest class MybatisPlusApplicationTests { @Autowired private UserMapper userMapper; @Test void contextLoads () { List<User> users = userMapper.selectList(null ); users.forEach(System.out::println); } }
1 2 3 4 思考问题 1. sql谁帮我们写的?—mybatis-plus 2. 方法谁帮我们写的?—mybatis-plus
2.配置日志 我们所有的sql是不可见的,我们希望知道他是怎么执行的,所以我们必须看日志!
1 2 # 配置日志 (默认控制台输出) mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
配置完日志之后你会喜欢上mybatis-plus!
3.CRUD扩展 1.插入数据 1 2 3 4 5 6 7 8 9 10 11 @Test public void testInsert () { User user = new User(); user.setName("codeyuaiiao" ); user.setAge(3 ); user.setEmail("747557612@qq.com" ); int result = userMapper.insert(user); System.out.println(result); System.out.println(user); }
注意点:数据库插入的id默认值为:全局的唯一id
2.主键生成策略
默认 ID_WORKER 全局唯一id
对应数据库中的主键(uuid.自增id.雪花算法.redis.zookeeper)
分布式系统唯一id生成:https://www.cnblogs.com/haoxinyue/p/5208136.html
雪花算法😦Twitter的snowflake算法)
snowflake是Twitter开源的分布式ID生成算法,结果是一个long型的ID。其核心思想是:使用41bit作为毫秒数,10bit作为机器的ID(5个bit是数据中心,5个bit的机器ID),12bit作为毫秒内的流水号(意味着每个节点在每毫秒可以产生 4096 个 ID),最后还有一个符号位,永远是0.可以保证几乎全球唯一
主键自增
我们需要配置主键自增:
实体类字段上@TableId(type = IdType.AUTO)
数据库字段一定要是自增 !
其余源码解释
1 2 3 4 5 6 7 8 9 10 11 public enum IdType { AUTO(0 ), NONE(1 ), INPUT(2 ), ID_WORKER(3 ), UUID(4 ), ID_WORKER_STR(5 );
3.更新数据
动态sql
注意:updateById()参数是 一个对象!
1 2 3 4 5 6 7 8 9 10 11 @Test public void testUpdate () { User user = new User(); user.setId(2L ); user.setName("哈哈哈哈哈哈哈" ); int i = userMapper.updateById(user); System.out.println(i); }
所有的sql都是动态帮你配置的.
4.自动填充 创建时间 . 修改时间! 这些个操作都是自动化完成的,我们不希望手动更新!
阿里巴巴开发手册:所有的数据库表:gmt_create .gmt_modified几乎所有的表都要配置上!而且需要自动化!
方式一:数据库级别(工作中不允许修改数据库级别)
1.在表中新增字段 create_time , update_time
2.再次测试插入方法,我们需要先把实体类同步
1 2 private Data creatTime;private Data updateTime;
再次更新查看结果即可
方式二:代码级别
1.删除数据库默认值
2.实体类字段属性上添加注解
1 2 3 4 5 6 7 @TableField (fill = FieldFill.INSERT)private Date createTime;@TableField (fill = FieldFill.INSERT_UPDATE)private Date updateTime;
3.编写处理器来处理这个注解
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 @Slf 4j@Component public class MyMetaObjectHandler extends MetaObjectHandler { @Override public void insertFill (MetaObject metaObject) { log.info("==start insert ······==" ); this .setFieldValByName("createTime" ,new Date(),metaObject); this .setFieldValByName("updateTime" ,new Date(),metaObject); } @Override public void updateFill (MetaObject metaObject) { log.info("==start update ······==" ); this .setFieldValByName("updateTime" ,new Date(),metaObject); } }
4、测试插入/更新,观察时间
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 @Test public void insertTest () { User user = new User(); user.setName("live" ); user.setAge(22 ); user.setEmail("1314@qq.com" ); Integer result = userMapper.insert(user); System.out.println(result); System.out.println(user); } @Test public void updateTest () { User user = new User(); user.setId(1359495921613004803L ); user.setName("test3" ); user.setAge(18 ); user.setEmail("test3@qq.com" ); int i = userMapper.updateById(user); System.out.println(i); }
5测试更新,观察时间即可!
5.乐观锁&悲观锁
乐观锁: 顾名思义十分乐观,他总是认为不会出现问题,无论干什么都不去上锁!如果出现了问题,再次更新值测试
悲观锁;顾名思义十分悲观,他总是认为出现问题,无论干什么都会上锁!再去操作!
我们这里主要讲解 乐观锁机制!
乐观锁实现方式:
取出记录时,获取当前version
更新时,带上这个version
执行更新时,set version = newVersion where version = oldVersion
如果version不对,就更新失败
1 2 3 4 5 6 7 乐观锁:先查询,获得版本号 update user set name = "wsk" ,version = version +1 where id = 1 and version = 1 update user set name = "wsk" ,version = version +1 where id = 1 and version = 1
测试一下Mybatis-Plus乐观锁插件
1、给数据库中增加version字段
2、实体类加对应的字段
1 2 @Version private Integer version;
3、注册组件
1 2 3 4 5 6 7 8 9 10 11 @MapperScan ("com.wsk.mapper" )@EnableTransactionManagement @Configuration public class MyBatisPlusConfig { @Bean public OptimisticLockerInterceptor optimisticLockerInterceptor () { return new OptimisticLockerInterceptor(); } }
4、测试一下
1 2 3 4 5 6 7 8 9 10 @Test public void testOptimisticLocker1 () { User user = userMapper.selectById(1L ); user.setAge(18 ); user.setEmail("2803708553@qq.com" ); userMapper.updateById(user); }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 @Test public void testOptimisticLocker2 () { User user1 = userMapper.selectById(1L ); user1.setAge(1 ); user1.setEmail("2803708553@qq.com" ); User user2 = userMapper.selectById(1L ); user2.setAge(2 ); user2.setEmail("2803708553@qq.com" ); userMapper.updateById(user2); userMapper.updateById(user1); }
6.查询操作
1 2 3 4 5 @Test public void testSelectById () { User user = userMapper.selectById(1L ); System.out.println(user); }
1 2 3 4 5 6 @Test public void testSelectBatchIds () { List<User> users = userMapper.selectBatchIds(Arrays.asList(1L , 2L , 3L )); users.forEach(System.out::println); }
1 2 3 4 5 6 7 8 9 @Test public void testMap () { HashMap<String, Object> map = new HashMap<>(); map.put("name" ,"www" ); map.put("age" ,18 ); List<User> users = userMapper.selectByMap(map); users.forEach(System.out::println); }
分页在网站的使用十分之多!
1、原始的limit分页
2、pageHelper第三方插件
3、MybatisPlus其实也内置了分页插件!
使用 :
1、配置拦截器组件
1 2 3 4 5 @Bean public PaginationInterceptor paginationInterceptor () { return new PaginationInterceptor(); }
2、直接使用page对象即可
1 2 3 4 5 6 7 8 9 @Test public void testPage () { Page<User> page = new Page<>(2 ,5 ); userMapper.selectPage(page,null ); page.getRecords().forEach(System.out::println); System.out.println("总页数==>" +page.getTotal()); }
7.基本的删除&&逻辑删除 基本的删除任务:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 @Test public void testDeleteById () { userMapper.deleteById(1359507762519068681L ); } @Test public void testDeleteBatchIds () { userMapper.deleteBatchIds(Arrays.asList(1359507762519068675L ,1359507762519068676L )); } @Test public void testD () { HashMap<String, Object> map = new HashMap<>(); map.put("age" ,"18" ); map.put("name" ,"lol" ); userMapper.deleteByMap(map); }
物理删除:从数据库中直接移除
逻辑删除: 在数据库中没有被移除,而是通过一个变量来让他失效! deleted=0=>deleted=1
管理员可以查看被删除的记录!防止数据的丢失,类似于回收站!
测试:
1.在数据表中增加一个deleted字段
2.实体类中增加属性
1 2 3 @TableLogic private Integer deleted;
3.配置
1 2 3 4 5 @Bean public ISqlInjector sqlInjector () { return new LogicSqlInjector(); }
配置
1 2 3 # 配置逻辑删除 没删除的为0 删除的为1 mybatis-plus.global-config.db-config.logic-delete-value=1 mybatis-plus.global-config.db-config.logic-not-delete-value=0
走的是更新操作,不是删除操作
发现: 记录还在,deleted变为1
再次测试查询被删除的用户,发现查询为空
以上的所有CRUD操作及其扩展,我们都必须精通掌握!会大大提好你的工作和写项目的效率
4.性能分析插件 我们在平时的开发中,会遇到一些慢sql.
MP也提供了性能分析插件,如果超过这个时间就停止运行!
性能分析拦截器作用:用于输出每条sql语句及其执行时间
1.导入插件
1 2 3 4 5 6 7 8 9 @Bean @Profile ({"dev" ,"test" })public PerformanceInterceptor performanceInterceptor () { PerformanceInterceptor performanceInterceptor = new PerformanceInterceptor(); performanceInterceptor.setMaxTime(100 ); performanceInterceptor.setFormat(true ); return performanceInterceptor; }
记住在SpringBoot中配置环境为 dev或者test环境
application.properties中添加设置开发环境
1 2 #设置开发环境 spring.profiles.active=dev
2.测试查询
1 2 3 4 5 6 7 8 @Test void contextLoads () { List<User> userList = userMapper.selectList(null ); userList.forEach(System.out::println); }
5.条件构造器Wrapper 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 package com.kuang;import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;import com.kuang.mapper.UserMapper;import com.kuang.pojo.User;import org.junit.jupiter.api.Test;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import java.util.List;import java.util.Map;@SpringBootTest public class WrapperTest { @Autowired private UserMapper userMapper; @Test void contextLoads () { QueryWrapper<User> wrapper = new QueryWrapper<>(); wrapper .isNotNull("name" ) .isNotNull("email" ) .ge("age" ,12 ); userMapper.selectList(wrapper).forEach(System.out::println); } @Test void test2 () { QueryWrapper<User> wrapper = new QueryWrapper<>(); wrapper.eq("name" ,"狂神说" ); User user = userMapper.selectOne(wrapper); System.out.println(user); } @Test void test3 () { QueryWrapper<User> wrapper = new QueryWrapper<>(); wrapper.between("age" ,20 ,30 ); Integer count = userMapper.selectCount(wrapper); System.out.println(count); } @Test void test4 () { QueryWrapper<User> wrapper = new QueryWrapper<>(); wrapper .notLike("name" ,"e" ) .likeRight("email" ,"t" ); List<Map<String, Object>> maps = userMapper.selectMaps(wrapper); maps.forEach(System.out::println); } @Test void test5 () { QueryWrapper<User> wrapper = new QueryWrapper<>(); wrapper.inSql("id" ,"select id from user where id<3" ); List<Object> objects = userMapper.selectObjs(wrapper); objects.forEach(System.out::println); } @Test void test6 () { QueryWrapper<User> wrapper = new QueryWrapper<>(); wrapper.orderByAsc("id" ); List<User> users = userMapper.selectList(wrapper); users.forEach(System.out::println); } }
Mysql => JDBC => Mybatis => MybatisPlus\
6.代码自动生成 dao、pojo、service、controller都给我自己去编写完成!
AutoGenerator 是 MyBatis-Plus 的代码生成器,通过 AutoGenerator 可以快速生成 Entity、Mapper、Mapper XML、Service、Controller 等各个模块的代码,极大的提升了开发效率。只需要改实体类名字 和包名 还有 数据库配置即可
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 70 package com.z;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.GlobalConfig;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 WskCode { public static void main (String[] args) { AutoGenerator mpg = new AutoGenerator(); GlobalConfig gc = new GlobalConfig(); String projectPath = System.getProperty("user.dir" ); gc.setOutputDir(projectPath+"/src/main/java" ); gc.setAuthor("zjc" ); gc.setOpen(false ); gc.setFileOverride(false ); gc.setServiceName("%sService" ); gc.setIdType(IdType.ID_WORKER); gc.setDateType(DateType.ONLY_DATE); gc.setSwagger2(true ); mpg.setGlobalConfig(gc); DataSourceConfig dsc = new DataSourceConfig(); dsc.setUsername("root" ); dsc.setPassword("123456" ); dsc.setUrl("jdbc:mysql://localhost:3306/mybatis_plus?useSSL=false&serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8" ); dsc.setDriverName("com.mysql.cj.jdbc.Driver" ); dsc.setDbType(DbType.MYSQL); mpg.setDataSource(dsc); PackageConfig pc = new PackageConfig(); pc.setModuleName("study" ); pc.setParent("com.zjc" ); pc.setEntity("pojo" ); pc.setMapper("mapper" ); pc.setService("service" ); pc.setController("controller" ); mpg.setPackageInfo(pc); StrategyConfig strategy = new StrategyConfig(); strategy.setInclude("admin" ,"danyuan" ,"building" ,"room" ); strategy.setNaming(NamingStrategy.underline_to_camel); strategy.setColumnNaming(NamingStrategy.underline_to_camel); strategy.setEntityLombokModel(true ); strategy.setLogicDeleteFieldName("deleted" ); TableFill gmtCreate = new TableFill("gmt_create" , FieldFill.INSERT); TableFill gmtUpdate = new TableFill("gmt_update" , FieldFill.INSERT_UPDATE); ArrayList<TableFill> tableFills = new ArrayList<>(); tableFills.add(gmtCreate); tableFills.add(gmtUpdate); strategy.setTableFillList(tableFills); strategy.setVersionFieldName("version" ); strategy.setRestControllerStyle(true ); strategy.setControllerMappingHyphenStyle(true ); mpg.setStrategy(strategy); mpg.execute(); } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 <dependency > <groupId > org.apache.velocity</groupId > <artifactId > velocity-engine-core</artifactId > <version > 2.0</version > </dependency > <dependency > <groupId > com.spring4all</groupId > <artifactId > spring-boot-starter-swagger</artifactId > <version > 1.5.1.RELEASE</version > </dependency > <dependency > <groupId > org.freemarker</groupId > <artifactId > freemarker</artifactId > <version > 2.3.30</version > </dependency > <dependency > <groupId > com.ibeetl</groupId > <artifactId > beetl</artifactId > <version > 3.3.2.RELEASE</version > </dependency >