简介
Mybatis-Plus:为简化开发而生,为简化Mybatis
官网地址:https://baomidou.com/guide/
特性
无侵入:只做增强不做改变,引入它不会对现有工程产生影响,如丝般顺滑
损耗小:启动即会自动注入基本 CURD,性能基本无损耗,直接面向对象操作
强大的 CRUD 操作:内置通用 Mapper、通用 Service,仅仅通过少量配置即可实现单表大部分 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.使用第三方组件步骤:
1.导入依赖
2.依赖如何配置
3.代码编写
4.提高扩展技术
2.创建数据库mybatis-plus,并插入数据
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)
);
-- 真实开发中还需要加入version(乐观锁)、deleted(逻辑删除)、gmt_created、gmt_modified
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.导入配置
<!--数据库驱动-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.20</version>
</dependency>
<!--mybatis-plus-->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.0.5</version>
</dependency>
<!--lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
注意:尽量不要把mybatis和mybatis-plus同时导入,存在依赖问题
5.在application.properties编写配置
数据库配置
mysql5的配置
spring.datasource.username=root
spring.datasource.password=123456
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
#mysql8需要增加一个时区的配置 serverTimezone=GMT%2B8
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis-plus?useSSL=false?useUnicode=true?characterEncoding=utf-8&serverTimezone=GMT%2B8
6.传统pojo-dao(链接mybaits,配置mapper.xml)-service-controller
6.使用mybatis-plus
1.pojo
@Data
@NoArgsConstructor
@AllArgsConstructor
public class User {
private int id;
private String name;
private int age;
private String email;
}
2.mapper接口
//加入对应的mapper上继承对应的BaseMapper
@Repository //代表是持久层的 或者用@Mapper
public interface UserMapper extends BaseMapper<User> {
//完成了简单的CRUD
}
注意:要在启动类上加入注解//添加扫描mapper文件
@MapperScan(“com.ty.mapper”)
3.使用
@Autowired
private UserMapper userMapper;
@Test
void contextLoads() {
}
@Test
public void selectALl(){
//Wrapper 属于一个条件构造器,null表示所有,没有条件
//查询所有
List<User> userList = userMapper.selectList(null);
userList.forEach(System.out::println);
}
日志配置
mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
CRUD
添加测试
@Test
public void testInsert(){
User user = new User();
user.setName("ty");
user.setAge(22);
user.setEmail("2911209994@qq.com");
int insert = userMapper.insert(user); //自动生成id
System.out.println(insert);//受影响行数
System.out.println(user); //id自动回填
}
数据库id默认的策略:全局唯一id
主键生成策略
uuid、自增id、雪花算法、redis、zookeeper
1.分布式系统生成唯一id:https://www.cnblogs.com/haoxinyue/p/5208136.html
全局默认唯一id : @TableId(type = IdType.ID_WORKER)
2.雪花算法:
snowflake是Twitter开源的分布式ID生成算法,结果是一个long型的ID。其核心思想是:使用41bit作为毫秒数,10bit作为机器的ID(5个bit是数据中心,5个bit的机器ID),12bit作为毫秒内的流水号(意味着每个节点在每毫秒可以产生 4096 个 ID),最后还有一个符号位,永远是0。可以保证几乎全球唯一!
主键自增策略 @TableId(type = IdType.AUTO)
实体类加上自增 数据库字段也必须是自增的
id解释
AUTO(0), //自增
NONE(1),//未设置主键
INPUT(2), //手动输入
ID_WORKER(3),//全局默认唯一id
UUID(4),//全局唯一id
ID_WORKER_STR(5);//ID_WORLER字符串表示法
更新操作
@Test
public void testUpdate(){
User user = new User();
user.setId(5L);
user.setName("tt");
int i = userMapper.updateById(user);
System.out.println(i);
System.out.println(user);
}
注:自动填充,对于创建时间和修改时间都是自动化的,不需要手动操作,gmt_create和gmt_modified所有的表都必须配置上,而且需要自动化
数据库级别
1.在表中添加字段:create_time、update_time
private Date createTime;
private Date updateTime;
代码级别
删除数据库的默认值、更新操作
在实体类上加入注解
@TableField(fill = FieldFill.INSERT) //在插入时,增加一些操作
private Date createTime;
@TableField(fill = FieldFill.INSERT_UPDATE) //在插入更新时,增加一些操作
private Date updateTime;
编写处理器处理创建时间和修改时间
@Slf4j
@Component //注入到ioc容器中,然后注解就会到ioc容器中识别,然后自动刷新时间
public class MyMetaObjectHandler implements MetaObjectHandler {
//插入时间填充策略
@Override
public void insertFill(MetaObject metaObject) {
log.info(“开始添加。。。”);
this.setFieldValByName(“createTime”,new Date(),metaObject);
this.setFieldValByName(“updateTime”,new Date(),metaObject);
}
//更新时间填充策略
@Override
public void updateFill(MetaObject metaObject) {
log.info(“开始更新。。。”);
this.setFieldValByName(“updateTime”,new Date(),metaObject);
}
}
乐观锁
顾名思义:很乐观,总是认为不会出现问题,无论做什么,不会上锁,若出现问题再更新值,再测试。
当要更新一条记录的时候,希望这条记录没有被别人更新
乐观锁实现方式:
取出记录时,获取当前version
更新时,带上这个version
执行更新时, set version = newVersion where version = oldVersion
如果version不对,就更新失败
乐观锁先查询版本号,获取版本号,version=1
– a 线程
update user set name = ‘ty’ ,version = 1 where id =2 and version=version+1
– b 线程 当a未执行结束,b抢先完成,导致a线程修改失败
update user set name=‘yy’, version = version+1 where id =2 and version=1
使用version首先再数据库添加version字段
实体类中加入version字段
@Version //乐观锁字段
private Integer version;//乐观锁
注册组件
//可以把之前写在启动类上面的MapperScan("com.ty.mapper")放过来
@MapperScan(“com.ty.mapper”)
@Configuration
@EnableTransactionManagement //事务配置
public class MyBatisPlusConfig {
//注册乐观锁
public OptimisticLockerInterceptor optimisticLockerInterceptor(){
return new OptimisticLockerInterceptor();
}
}
4.测试一下
//测试乐观锁 成功案例
@Test
public void testOptimisticLockerInterceptor(){
User user = userMapper.selectById(2l);
user.setAge(21);
user.setEmail("2911209994@qq.com");
int i = userMapper.updateById(user);
System.out.println(i);
System.out.println(user);
}
//测试乐观锁 失败案例
@Test
public void testOptimisticLockerInterceptor2(){
//第一次操作 线程1
User user = userMapper.selectById(2l);
user.setAge(21);
user.setEmail("2911209994@qq.com");
//第二次操作 线程2
User user2 = new User();
userMapper.selectById(2l);
user.setAge(333);
user.setEmail("11111@qq.com");
userMapper.updateById(user2);
//更新操作 更新线程1 /可以尝试用自旋锁来尝试i提交
userMapper.updateById(user);
}
悲观锁
顾名思义:很悲观,总是认为会出问题,无论做什么,都会加锁,
查询操作
测试查询
//测试查询操作,单个查询
@Test
public void testSelectById(){
User user = userMapper.selectById(1l);
System.out.println(user);
}
//批量查询
@Test
public void testSelectByIds(){
List<User> userList = userMapper.selectBatchIds(Arrays.asList(1, 2, 3));
userList.forEach(System.out::println);
}
//条件查询
@Test
public void testSelectMap(){
Map<String,Object> map = new HashMap<>();
map.put("name","ty");
userMapper.selectByMap(map);
}
分页查询
1.原始使用limit分页查询
2.使用分页插件
3.Mybatis-Plus也有对应的插件
使用Mybatis-Plus插件
1.配置拦截器组件
2.使用
//配置分页插件
@Bean
public PaginationInterceptor paginationInterceptor() {
return new PaginationInterceptor();
}
//测试分页
@Test
public void testPage(){
//参数一:当前页
//参数二:页面大大小
Page<User> page = new Page<>(1,5);
userMapper.selectPage(page,null);
page.getRecords().forEach(System.out::println);
}
删除操作
1.根据id删除
//删除测试
@Test
public void testDelete(){
userMapper.deleteById(1345605674251407361L);
}
//批量删除
@Test
public void testDeleteIds(){
userMapper.deleteBatchIds(Arrays.asList(1345604884518514689l,1345601395885191169l));
}
@Test
public void testDeleteMap(){
Map<String,Object> map = new HashMap<>();
map.put("name","ty");
userMapper.deleteByMap(map);
}
逻辑删除:
物理删除:直接从数据库中移除
逻辑删除:没有从数据库中移除,通过一个变量让他失效,类似于回收站
1.再数据库中增加一个deleted
2.实体类增加属性
@TableLogic //逻辑删除
private Integer deleted;
3.配置
//逻辑删除组件
@Bean
public ISqlInjector iSqlInjector(){
return new LogicSqlInjector();
}
#配置逻辑删除
mybatis-plus.global-config.db-config.logic-delete-value=1
mybatis-plus.global-config.db-config.logic-not-delete-value=0
4.测试
记录依旧在数据库,查询测试是否数据还在
性能分析插件
平时开发中会出现一些慢sql,测试,druid
MP也提供了这个插件,如果超过这个时间,就会停止执行
性能分析拦截器,用于输出每条sql执行的时间
1.导入插件
// SQL执行效率插件
@Bean
@Profile({“dev”,“test”})
public PerformanceInterceptor performanceInterceptor(){
PerformanceInterceptor performanceInterceptor = new PerformanceInterceptor();
performanceInterceptor.setMaxTime(100); //ms 设置sql执行的最大时间,如果超过了则不执行
performanceInterceptor.setFormat(true); // 是否格式化
return performanceInterceptor;
}
##spring增加开发环境和测试环境
spring.profiles.active=dev
2.测试使用
//测试性能分析插件
@Test
public void testPerformanceInterceptor(){
User user = userMapper.selectById(1l);
System.out.println(user);
}
帮助提供效率
条件构造器
//查询名字不为空。邮箱不为空且年龄大于12
@Test
public void select1(){
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper
.isNotNull("name")
.isNotNull("email")
.ge("age",12);
userMapper.selectList(wrapper).forEach(System.out::println);
}
//查询名字等于Tom
@Test
void select2(){
QueryWrapper<User> userQueryWrapper = new QueryWrapper<>();
userQueryWrapper.eq("name","Tom");
User user = userMapper.selectOne(userQueryWrapper); //查询一个可以用selectOne()
System.out.println(user);
}
//查询年龄20-30岁之间的人数
@Test
void select3(){
QueryWrapper<User> wr = new QueryWrapper<>();
wr.between("age",20,30);
Integer count = userMapper.selectCount(wr);
System.out.println(count);
}
//模糊查询,查询不包含e,但是包涵t的
@Test
void select4(){
QueryWrapper<User> userQueryWrapper = new QueryWrapper<>();
userQueryWrapper.notLike("name","e").like("name","k");
List<Map<String, Object>> maps = userMapper.selectMaps(userQueryWrapper);
maps.forEach(System.out::println);
}
//嵌套子查询
@Test
void select5(){
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.inSql("id","select id from user where id < 4");
List<Object> list = userMapper.selectObjs(wrapper);
System.out.println(list);
}
//ordery desc降序
@Test
void select6(){
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.orderByDesc("age");
List<User> userList = userMapper.selectList(wrapper);
userList.forEach(System.out::println);
}
代码自动生成器
package com.ty;
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 Test {
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("ty");
gc.setOpen(false);
//是否覆盖
gc.setFileOverride(false);
//去掉Service的I 前缀
gc.setServiceName("%sService");
gc.setIdType(IdType.ID_WORKER);
gc.setDateType(DateType.ONLY_DATE);
//gc.setSwagger2(true);
mpg.setGlobalConfig(gc);
// 数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://localhost:3306/mybatis-plus?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);
// 包配置
PackageConfig pc = new PackageConfig();
pc.setModuleName("blog");
pc.setParent("com.ty");
pc.setEntity("pojo");
pc.setService("service");
pc.setMapper("mapper");
pc.setController("controller");
mpg.setPackageInfo(pc);
//4、策略配置
StrategyConfig strategy = new StrategyConfig();
strategy.setInclude("role");//设置要映射的表 -----------------注意要修改表名-----------------------
strategy.setNaming(NamingStrategy.underline_to_camel);//驼峰命名
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
strategy.setEntityLombokModel(true);//lombok
strategy.setRestControllerStyle(true);
//逻辑删除
strategy.setLogicDeleteFieldName("deleted");
//自动填充策略
TableFill gmtCreate = new TableFill("gmt_create", FieldFill.INSERT);
TableFill gmtModified = new TableFill("gmt_modified", FieldFill.INSERT_UPDATE);
ArrayList<TableFill> list = new ArrayList<>();
list.add(gmtCreate);
list.add(gmtModified);
strategy.setTableFillList(list);
//乐观锁
strategy.setVersionFieldName("version");
//rest 风格 开启驼峰命名
strategy.setRestControllerStyle(true);
//controller 请求多字段连接 实现下划线连接 eg:localhost:8080/aa_bb
strategy.setControllerMappingHyphenStyle(true);
mpg.setStrategy(strategy);
//执行
mpg.execute();
}
}
感谢狂神。。。。。。