当前位置:   article > 正文

MyBatis-Plus解说_mybatis oceanbase

mybatis oceanbase

目录

一、MyBatis-Plus简介

1、简介

2、特性

3、支持数据库

4、框架结构

 二、环境搭建

1、创建表

2、添加数据

3、搭建开发环境

4、引入依赖

5、idea中安装lombok插件

 6、配置application.yml

7、配置启动类

 8、添加实体

 9、添加mapper

 10、测试

三、基本CRUD

 1、插入

2、删除

a>通过id删除记录

b>通过id批量删除记录

c>通过map条件删除记录

3、修改

4、查询

a>根据id查询用户信息

b>根据多个id查询多个用户信息

c>通过map条件查询用户信息 

d>查询所有数据  

5、通用Service 

a>IService

b>创建Service接口和实现类

c>测试查询记录数 

d>测试批量插入 

 四、常用注解

1、@TableName

 a>通过全局配置解决问题(固定的前缀)

2、@TableId  

a>@TableId的value属性 

b>@TableId的type属性

3、@TableField  

4、@TableLogic

a>逻辑删除

b>实现逻辑删除

五、条件构造器和常用接口  

1、wapper介绍

 2、QueryWrapper

a>例1:组装查询条件

b>例2:组装排序条件

c>例3:组装删除条件

 d>例4:条件的优先级

 e>例5:组装select子句

f>例6:实现子查询  

3、updatewrapper

 4、LambdaQueryWrapper

 5、LambdaUpdateWrapper

六、插件

1、分页插件

a>添加配置类

b>测试类

2、乐观锁

 a>场景

b>乐观锁与悲观锁

 c>模拟修改冲突

d>乐观锁实现流程

 e>Mybatis-Plus实现乐观锁

七、MyBatisX插件


一、MyBatis-Plus简介

1、简介

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

2、特性

1、依赖少:仅仅依赖 Mybatis 以及 Mybatis-Spring 。

2、损耗小:启动即会自动注入基本 CURD,性能基本无损耗,直接面向对象操作 。

3、预防Sql注入:内置 Sql 注入剥离器,有效预防Sql注入攻击 。

4、通用CRUD操作:内置通用 Mapper、通用 Service,仅仅通过少量配置即可实现单表大部分 CRUD 操作,更有强大的条件构造器,满足各类使用需求 。

5、多种主键策略:支持多达4种主键策略(内含分布式唯一ID生成器),可自由配置,完美解决主键问题 。

6、支持热加载:Mapper 对应的 XML 支持热加载,对于简单的 CRUD 操作,甚至可以无 XML 启动

7、支持ActiveRecord:支持 ActiveRecord 形式调用,实体类只需继承 Model 类即可实现基本 CRUD 操作

8、支持代码生成:采用代码或者 Maven 插件可快速生成 Mapper 、 Model 、 Service 、 Controller 层代码(生成自定义文件,避免开发重复代码),支持模板引擎、有超多自定义配置等。

9、支持自定义全局通用操作:支持全局通用方法注入( Write once, use anywhere )。

10、支持关键词自动转义:支持数据库关键词(order、key…)自动转义,还可自定义关键词 。

11、内置分页插件:基于 Mybatis 物理分页,开发者无需关心具体操作,配置好插件之后,写分页等同于普通List查询。

12、内置性能分析插件:可输出 Sql 语句以及其执行时间,建议开发测试时启用该功能,能有效解决慢查询 。

13、内置全局拦截插件:提供全表 delete 、 update 操作智能分析阻断,预防误操作。

14、默认将实体类的类名查找数据库中的表,使用@TableName(value="table1")注解指定表名,@TableId指定表主键,若字段与表中字段名保持一致可不加注解。

3、支持数据库

任何能使用MyBatis进行 CRUD, 并且支持标准 SQL 的数据库,具体支持情况如下:
MySQL,Oracle,DB2,H2,HSQL,SQLite,PostgreSQL,SQLServer,Phoenix,Gauss ,
ClickHouse,Sybase,OceanBase,Firebird,Cubrid,Goldilocks,csiidb 达梦数据库,虚谷数据库,人大金仓数据库,南大通用(华库)数据库,南大通用数据库,神通数据 库,瀚高数据库

4、框架结构

 二、环境搭建

1、创建表

  1. CREATE DATABASE `mybatisplus`;
  2. use `mybatisplus`;
  3. CREATE TABLE `user` (
  4. `id` bigint(20) NOT NULL COMMENT '主键ID',
  5. `name` varchar(30) DEFAULT NULL COMMENT '姓名',
  6. `age` int(11) DEFAULT NULL COMMENT '年龄',
  7. `email` varchar(50) DEFAULT NULL COMMENT '邮箱',
  8. PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

2、添加数据

  1. INSERT INTO user (id, name, age, email) VALUES
  2. (1, 'Jone', 18, 'test1@baomidou.com'),
  3. (2, 'Jack', 20, 'test2@baomidou.com'),
  4. (3, 'Tom', 28, 'test3@baomidou.com'),
  5. (4, 'Sandy', 21, 'test4@baomidou.com'),
  6. (5, 'Billie', 24, 'test5@baomidou.com');

3搭建开发环境

使用 Spring Initializr 快速初始化一个 Spring Boot 工程

4引入依赖

  1. <dependency>
  2. <groupId>com.baomidou</groupId>
  3. <artifactId>mybatis-plus-boot-starter</artifactId>
  4. <version>3.2.0</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.projectlombok</groupId>
  8. <artifactId>lombok</artifactId>
  9. <version>1.18.24</version>
  10. </dependency>
  11. <dependency>
  12. <groupId>com.baomidou</groupId>
  13. <artifactId>mybatis-plus-generator</artifactId>
  14. <version>3.4.0</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>mysql</groupId>
  18. <artifactId>mysql-connector-java</artifactId>
  19. <version>8.0.28</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.freemarker</groupId>
  23. <artifactId>freemarker</artifactId>
  24. <version>2.3.31</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. <version>RELEASE</version>
  30. <scope>compile</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.baomidou</groupId>
  34. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  35. <version>3.5.0</version>
  36. </dependency>

5idea中安装lombok插件

 6配置application.yml

  1. spring: # 配置数据源信息
  2. datasource:
  3. type: com.zaxxer.hikari.HikariDataSource
  4. driver-class-name: com.mysql.cj.jdbc.Driver
  5. url: jdbc:mysql://localhost:3306/mybatisplus?characterEncoding=utf-8&serverTimezone=GMT%2B8&userSSL=false
  6. username: username
  7. password: [assword

7配置启动类

在Spring Boot启动类中添加@MapperScan注解,扫描mapper包

 8添加实体

  1. /*
  2. * @NoArgsConstructor 是添加一个无参数的构造器
  3. * @AllArgsConstructor在类上使用,这个注解可以生成全参构造函数,且默认不生成无参构造函数。
  4. * @TableName注解主要是实现实体类型和数据库中的表实现映射。
  5. * */
  6. @Data
  7. @AllArgsConstructor
  8. @NoArgsConstructor
  9. @TableName("user")
  10. public class User {
  11. @TableId(value = "uid")
  12. private Long uid;
  13. private String name;
  14. private Integer age;
  15. private String email;
  16. private Integer sex;
  17. }

 9添加mapper

 10测试

  1. @Autowired
  2. private UserMapper userMapper;
  3. @Test
  4. public void testselect(){
  5. List<User> users = userMapper.selectList(null);
  6. users.forEach(System.out::println);
  7. }

三、基本CRUD

MyBatis-Plus中的基本CRUD在内置的BaseMapper中都已得到了实现,我们可以直接使用,接口如 下:
public interface BaseMapper<T> extends Mapper<T> {

    /**
     * 插入一条记录
     *
     * @param entity 实体对象
     */
    int insert(T entity);

    /**
     * 根据 ID 删除
     *
     * @param id 主键ID
     */
    int deleteById(Serializable id);

    /**
     * 根据 columnMap 条件,删除记录
     *
     * @param columnMap 表字段 map 对象
     */
    int deleteByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);

    /**
     * 根据 entity 条件,删除记录
     *
     * @param wrapper 实体对象封装操作类(可以为 null)
     */
    int delete(@Param(Constants.WRAPPER) Wrapper<T> wrapper);

    /**
     * 删除(根据ID 批量删除)
     *
     * @param idList 主键ID列表(不能为 null 以及 empty)
     */
    int deleteBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);

    /**
     * 根据 ID 修改
     *
     * @param entity 实体对象
     */
    int updateById(@Param(Constants.ENTITY) T entity);

    /**
     * 根据 whereEntity 条件,更新记录
     *
     * @param entity        实体对象 (set 条件值,可以为 null)
     * @param updateWrapper 实体对象封装操作类(可以为 null,里面的 entity 用于生成 where 语句)
     */
    int update(@Param(Constants.ENTITY) T entity, @Param(Constants.WRAPPER) Wrapper<T> updateWrapper);

    /**
     * 根据 ID 查询
     *
     * @param id 主键ID
     */
    T selectById(Serializable id);

    /**
     * 查询(根据ID 批量查询)
     *
     * @param idList 主键ID列表(不能为 null 以及 empty)
     */
    List<T> selectBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);

    /**
     * 查询(根据 columnMap 条件)
     *
     * @param columnMap 表字段 map 对象
     */
    List<T> selectByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);

    /**
     * 根据 entity 条件,查询一条记录
     *
     * @param queryWrapper 实体对象封装操作类(可以为 null)
     */
    T selectOne(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

    /**
     * 根据 Wrapper 条件,查询总记录数
     *
     * @param queryWrapper 实体对象封装操作类(可以为 null)
     */
    Integer selectCount(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

    /**
     * 根据 entity 条件,查询全部记录
     *
     * @param queryWrapper 实体对象封装操作类(可以为 null)
     */
    List<T> selectList(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

    /**
     * 根据 Wrapper 条件,查询全部记录
     *
     * @param queryWrapper 实体对象封装操作类(可以为 null)
     */
    List<Map<String, Object>> selectMaps(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

    /**
     * 根据 Wrapper 条件,查询全部记录
     * <p>注意: 只返回第一个字段的值</p>
     *
     * @param queryWrapper 实体对象封装操作类(可以为 null)
     */
    List<Object> selectObjs(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

    /**
     * 根据 entity 条件,查询全部记录(并翻页)
     *
     * @param page         分页查询条件(可以为 RowBounds.DEFAULT)
     * @param queryWrapper 实体对象封装操作类(可以为 null)
     */
    <E extends IPage<T>> E selectPage(E page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

    /**
     * 根据 Wrapper 条件,查询全部记录(并翻页)
     *
     * @param page         分页查询条件
     * @param queryWrapper 实体对象封装操作类
     */
    <E extends IPage<Map<String, Object>>> E selectMapsPage(E page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
}

 1、插入

  1. @Test
  2. public void s(){
  3. System.out.println(userMapper.insert(new User("小明1", 55, "cds")));
  4. System.out.println(userMapper.insert(new User("小明2", 40, "10")));
  5. System.out.println(userMapper.insert(new User("小明3", 60, "10")));
  6. System.out.println(userMapper.insert(new User("小明4", 80, "cds")));
  7. }
MyBatis-Plus在实现插入数据时,会默认基于雪花算法的策略生成id

2、删除

a>通过id删除记录

  1. @Test
  2. public void delect(){
  3. System.out.println(userMapper.deleteById(1527478582870392834L));
  4. }

b>通过id批量删除记录

  1. @Test
  2. public void delect(){
  3. List<Long> list= Arrays.asList(2L,3L);
  4. System.out.println(userMapper.deleteBatchIds(list));
  5. }

c>通过map条件删除记录

  1. @Test
  2. public void delect(){
  3. Map<String,Object> map=new HashMap<>();
  4. map.put("email","cds");
  5. System.out.println(userMapper.deleteByMap(map));
  6. }

3、修改

  1. @Test
  2. public void update(){
  3. User user=new User();
  4. user.setId(1L);
  5. user.setName("update");
  6. user.setEmail("1234567890");
  7. System.out.println(userMapper.updateById(user));
  8. }

4、查询

a>根据id查询用户信息

  1. @Test
  2. public void select(){
  3. System.out.println(userMapper.selectById(4L));
  4. }

b>根据多个id查询多个用户信息

  1. @Test
  2. public void select(){
  3. List<Long> list= Arrays.asList(1527488780829806593L,1527488780762697730L,5L);
  4. List<User> list1 = userMapper.selectBatchIds(list);
  5. list1.forEach(System.out::println);
  6. }

c>通过map条件查询用户信息 

  1. @Test
  2. public void select(){
  3. Map<String,Object> map=new HashMap<>();
  4. map.put("name","小明3");
  5. map.put("age",20);
  6. System.out.println(userMapper.selectByMap(map));
  7. }

d>查询所有数据  

  1. @Test
  2. public void select(){
  3. System.out.println(userMapper.selectList(null));
  4. }
大多方法中都有Wrapper类型的形参,此为条件构造器,可针对于SQL语句设置不同的条件,若没有条件,则可以为该形参赋值null,即查询(删除/修改)所 有数据

5、通用Service 

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

a>IService

MyBatis-Plus中有一个接口 IService和其实现类 ServiceImpl,封装了常见的业务层逻辑详情查看源码IService和ServiceImpl

b>创建Service接口和实现类

  1. public interface UserService extends IService<User> {
  2. }
  1. /*
  2. * 自动注册到Spring容器
  3. */
  4. @Service
  5. public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService {
  6. }

c>测试查询记录数 

  1. @Test
  2. public void ss(){
  3. System.out.println("记录数量是+"+userService.count());
  4. }

d>测试批量插入 

  1. @Test
  2. public void insert(){
  3. List<User> list = new ArrayList<>();
  4. for (int i=1;i<30;i++){
  5. String name="小明"+i;
  6. Integer age=10+i;
  7. User user=new User(name, age, "cds");
  8. list.add(user);
  9. }
  10. System.out.println(userService.saveBatch(list));
  11. }

 四、常用注解

1@TableName

经过以上的测试,在使用MyBatis-Plus实现基本的CRUD时, 我们并没有指定要操作的表,只是在
Mapper接口继承BaseMapper时,设置了泛型User,而操作的表为user表,由此得出结论MyBatis-Plus在确定操作的表时,由BaseMapper的泛型决定,即实体类型决定,且默认操作的表名和实体类型的类名一致。若实体类类型的类名和要操作的表的表名不一致,就需要添加注解。

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

 a>通过全局配置解决问题(固定的前缀)

在开发的过程中,我们经常遇到以上的问题,即实体类所对应的表都有固定的前缀,例如t_或tbl_
此时,可以使用MyBatis-Plus提供的全局配置,为实体类所对应的表名设置默认的前缀,那么就
不需要在每个实体类上通过@TableName标识实体类对应的表
# 配置 MyBatis-Plus 操作表的默认前缀
table-prefix : t_

2@TableId  

MyBatis-Plus在实现CRUD时,会默认将id作为主键列,并在插入数据时,默认
基于雪花算法的策略生成id

a>@TableIdvalue属性 

若实体类中主键对应的属性为id,而表中表示主键的字段为uid,此时若只在属性id上添加注解
@TableId,则抛出异常Unknown column 'id' in 'field list',即MyBatis-Plus仍然会将id作为表的
主键操作,而表中表示主键的是字段uid
此时需要通过@TableId注解的value属性,指定表中的主键字段,@TableId("uid")或
@TableId(value="uid")

b>@TableIdtype属性

 配置全局主键策略

db-config :
# 配置 MyBatis-Plus 操作表的默认前缀
table-prefix : t_
# 配置 MyBatis-Plus 的主键策略
id-type : auto

3@TableField  

在MP中通过@TableField注解可以指定字段的一些属性,常常解决的问题有两个:
1.对象中的属性名和表中的字段名不一致(非驼峰)
2.对象中的属性字段在表中不存在

4、@TableLogic

a>逻辑删除

物理删除:真实删除,将对应数据从数据库中删除,之后查询不到此条被删除的数据
逻辑删除:假删除,将对应数据中代表是否被删除字段的状态修改为“被删除状态”,之后在数据库
中仍旧能看到此条数据记录
使用场景:可以进行数据恢复

b>实现逻辑删除

step1:数据库中创建逻辑删除状态列,设置默认值为0
step2:实体类中添加逻辑删除属性
  1. @TableName("User")
  2. public class User {
  3. @TableId
  4. private Long id;
  5. private String name;
  6. private Integer age;
  7. private String email;
  8. @TableLogic
  9. private Integer sex;
  10. }

五、条件构造器和常用接口  

1wapper介绍

 

Wrapper : 条件构造抽象类,最顶端父类
        AbstractWrapper : 用于查询条件封装,生成 sql where 条件
                QueryWrapper : 查询条件封装
                UpdateWrapper : Update 条件封装
                AbstractLambdaWrapper : 使用Lambda 语法
                        LambdaQueryWrapper :用于Lambda语法使用的查询 Wrapper
                        LambdaUpdateWrapper : Lambda 更新封装 Wrapper

 2QueryWrapper

a>1:组装查询条件

  1. @Test
  2. public void test01(){
  3. QueryWrapper<User> wrapper = new QueryWrapper<>();
  4. wrapper.between("age",9,30).isNotNull("email");
  5. usermapper.selectList(wrapper).forEach(System.out::println);
  6. }

b>2:组装排序条件

  1. @Test
  2. public void test02(){
  3. QueryWrapper<User> queryWrapper = new QueryWrapper<>();
  4. queryWrapper.orderByAsc("uid").orderByAsc("age");
  5. usermapper.selectList(queryWrapper).forEach(System.out::println);
  6. }

c>3:组装删除条件

  1. @Test
  2. public void test03(){
  3. QueryWrapper<User> wrapper = new QueryWrapper<>();
  4. wrapper.between("age",20,50);
  5. System.out.println(usermapper.delete(wrapper));
  6. }

 d>4:条件的优先级

  1. // 将年龄大于50,或者email是cds的数据的用户名修改为00
  2. @Test
  3. public void test04(){
  4. QueryWrapper<User> queryWrapper = new QueryWrapper<>();
  5. queryWrapper.gt("age",50).or().eq("email","cds");
  6. User user = new User();
  7. user.setName("00");
  8. user.setAge(99);
  9. System.out.println(usermapper.update(user,queryWrapper));
  10. }

 e>5:组装select子句

  1. @Test
  2. public void test06(){
  3. QueryWrapper<User> queryWrapper = new QueryWrapper<>();
  4. queryWrapper.select("age","name");
  5. usermapper.selectList(queryWrapper).forEach(System.out::println);
  6. }

f>例6:实现子查询  

  1. @Test
  2. public void test07(){
  3. QueryWrapper<User> queryWrapper = new QueryWrapper<>();
  4. queryWrapper.inSql("uid","select uid from user where age<=50");
  5. usermapper.selectList(queryWrapper).forEach(System.out::println);
  6. }

3、updatewrapper

第一种:

将需要更新的字段,设置到entity 中

  1. UpdateWrapper<User> updateWrapper = new UpdateWrapper<>();
  2. updateWrapper.eq("name","shimin");
  3. User user = new User();
  4. user.setAge(18);

第二种:

可以将entity设置为 null ,将需要更新的字段设置到 UpdateWrapper 中

  1. UpdateWrapper<User> updateWrapper = new UpdateWrapper<>();
  2. updateWrapper.set("id","123")eq("name","shimin");
  3. Integer rows = userMapper.update(null, updateWrapper);

 4LambdaQueryWrapper

lambdaQueryWrapper中常用方法 

 

 

 5LambdaUpdateWrapper

六、插件

1、分页插件

MyBatis Plus自带分页插件,只要简单的配置即可实现分页功能

a>添加配置类

  1. @MapperScan("com.at.mybatisplus1.mybatisplus1.mapper")
  2. @Configuration
  3. public class mybatisPlus{
  4. @Bean
  5. public MybatisPlusInterceptor mybatisPlusInterceptor(){
  6. MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
  7. //数据库类型是MySql,因此参数填写DbType.MYSQL
  8. interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
  9. //添加乐观锁插件
  10. interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
  11. return interceptor;
  12. }
  13. }

b>测试类

  1. @Test
  2. public void test01(){
  3. //设置分页参数
  4. Page<User> page = new Page<>(1, 5);
  5. userMapper.selectPage(page, null);
  6. //获取分页数据
  7. List<User> list = page.getRecords();
  8. list.forEach(System.out::println);
  9. System.out.println("当前页:"+page.getCurrent());
  10. System.out.println("每页显示的条数:"+page.getSize());
  11. System.out.println("总记录数:"+page.getTotal());
  12. System.out.println("总页数:"+page.getPages());
  13. System.out.println("是否有上一页:"+page.hasPrevious());
  14. System.out.println("是否有下一页:"+page.hasNext());
  15. }

2、乐观锁

 a>场景

 一件商品,成本价是80元,售价是100元。老板先是通知小李,说你去把商品价格增加50元。小
李正在玩游戏,耽搁了一个小时。正好一个小时后,老板觉得商品价格增加到150元,价格太
高,可能会影响销量。又通知小王,你把商品价格降低30元。
此时,小李和小王同时操作商品后台系统。小李操作的时候,系统先取出商品价格100元;小王
也在操作,取出的商品价格也是100元。小李将价格加了50元,并将100+50=150元存入了数据
库;小王将商品减了30元,并将100-30=70元存入了数据库。是的,如果没有锁,小李的操作就
完全被小王的覆盖了。
现在商品价格是70元,比成本价低10元。几分钟后,这个商品很快出售了1千多件商品,老板亏1
万多

b>乐观锁与悲观锁

上面的故事,如果是乐观锁,小王保存价格前,会检查下价格是否被人修改过了。如果被修改过 了,则重新取出的被修改后的价格,150元,这样他会将120元存入数据库。 如果是悲观锁,小李取出数据后,小王只能等小李操作完之后,才能对价格进行操作,也会保证最终的价格是120元。

 c>模拟修改冲突

数据库中增加商品表

  1. CREATE TABLE t_product
  2. ( id BIGINT(20) NOT NULL COMMENT '主键ID', NAME VARCHAR(30)
  3. NULL DEFAULT NULL COMMENT '商品名称', price INT(11)
  4. DEFAULT 0 COMMENT '价格', VERSION INT(11)
  5. DEFAULT 0 COMMENT '乐观锁版本号', PRIMARY KEY (id) );

 添加数据

INSERT INTO t_product (id, NAME, price) VALUES (1, '外星人笔记本', 100);
添加实体
  1. @Data
  2. @AllArgsConstructor
  3. @NoArgsConstructor
  4. @TableName("t_product")
  5. public class Product {
  6. private Long id;
  7. private String name;
  8. private Integer price;
  9. private Integer version;
  10. }
添加 mapper
  1. @Repository
  2. public interface ProductMapper extends BaseMapper<Product> {}
测试
  1. @Test
  2. public void test01(){
  3. Product product = productMapper.selectById(1);
  4. System.out.println("小李+"+product.getPrice());
  5. Product product1 = productMapper.selectById(1);
  6. System.out.println("小王+"+product1.getPrice());
  7. product.setPrice(product.getPrice()+50);
  8. productMapper.updateById(product);
  9. product1.setPrice(product1.getPrice()-30);
  10. productMapper.updateById(product1);
  11. System.out.println("老班查询的价格是+"+productMapper.selectById(1).getPrice());
  12. }

d>乐观锁实现流程

数据库中添加version字段
取出记录时,获取当前version
SELECT id,`name`,price,`version` FROM product WHERE id= 1

更新时,version + 1,如果where语句中的version版本不对,则更新失败

 UPDATE product SET price=price+50, `version`=`version` + 1 WHERE id=1 AND

`version`= 1

 e>Mybatis-Plus实现乐观锁

修改实体类
  1. @Data
  2. @AllArgsConstructor
  3. @NoArgsConstructor
  4. @TableName("t_product")
  5. public class Product {
  6. private Long id;
  7. private String name;
  8. private Integer price;
  9. @Version//标识乐观锁版本号字段
  10. private Integer version;
  11. }
添加乐观锁插件配置
  1. @MapperScan("com.at.mybatisplus1.mybatisplus1.mapper")
  2. @Configuration
  3. public class mybatisPlus{
  4. @Bean
  5. public MybatisPlusInterceptor mybatisPlusInterceptor(){
  6. MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
  7. //数据库类型是MySql,因此参数填写DbType.MYSQL
  8. interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
  9. //添加乐观锁插件
  10. interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
  11. return interceptor;
  12. }
  13. }
测试修改冲突
小李查询商品信息:
SELECT id,name,price,version FROM t_product WHERE id=?
小王查询商品信息:
SELECT id,name,price,version FROM t_product WHERE id=?
小李修改商品价格,自动将version+1
UPDATE t_product SET name=?, price=?, version=? WHERE id=? AND version=?
Parameters: 外星人笔记本(String), 150(Integer), 1(Integer), 1(Long), 0(Integer)
小王修改商品价格,此时version已更新,条件不成立,修改失败
UPDATE t_product SET name=?, price=?, version=? WHERE id=? AND version=?
Parameters: 外星人笔记本(String), 70(Integer), 1(Integer), 1(Long), 0(Integer)
最终,小王修改失败,查询价格:150
SELECT id,name,price,version FROM t_product WHERE id=?
优化流程
  1. @Autowired
  2. private ProductMapper productMapper;
  3. @Test
  4. public void test01(){
  5. Product product = productMapper.selectById(1);
  6. System.out.println("小李+"+product.getPrice());
  7. Product product1 = productMapper.selectById(1);
  8. System.out.println("小王+"+product1.getPrice());
  9. product.setPrice(product.getPrice()+50);
  10. productMapper.updateById(product);
  11. product1.setPrice(product1.getPrice()-30);
  12. int result= productMapper.updateById(product1);
  13. if (result==0){
  14. Product product2 = productMapper.selectById(1);
  15. product2.setPrice(product2.getPrice()-30);
  16. productMapper.updateById(product2);
  17. }
  18. System.out.println("老班查询的价格是+"+productMapper.selectById(1).getPrice());
  19. }

七、MyBatisX插件

MybatisX 是一款基于 IDEA 的快速开发插件,为效率而生。

安装方法:打开 IDEA,进入 File -> Settings -> Plugins -> Browse Repositories,输入 mybatisx 搜索并安装。

 生成代码(需先在 idea 配置 Database 配置数据源)

 重置模板

 自定义模板内容

 字段信息

 配置信息

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/487989
推荐阅读
相关标签
  

闽ICP备14008679号