目录
①. 分页插件
②. xml自定义分页
③. 乐观锁
①. MyBatis Plus自带分页插件,只要简单的配置即可实现分页功能
②. 添加配置类
@Configuration
public class MybatisPlusConfig {
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor(){
MybatisPlusInterceptor interceptor=new MybatisPlusInterceptor();
//添加分页插件
interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
return interceptor;
}
}
③. 测试类测试
@Test
public void testPage(){
// SELECT id,name,age,email,is_deleted FROM user WHERE is_deleted=0 LIMIT ?
Page page=new Page<>(1,3);
userMapper.selectPage(page, null);
//获取当前页的数据
System.out.println("当前页的数据:"+page.getRecords());
//获取当前页页码
System.out.println("当前页的页码:"+page.getCurrent());
//获取当前页数据的个数
System.out.println("当前页的数据数:"+page.getSize());
//获取总记录数
System.out.println("数据库总数据数:"+page.getTotal());
//是否有下一页
System.out.println("是否有下一页:"+page.hasNext());
//是否有上一页
System.out.println("是否有上一页:"+page.hasPrevious());
System.out.println("一共有"+page.getPages()+"页");
}
@Mapper
public interface UserMapper extends BaseMapper {
//根据年龄查询数据并进行分页,page:mybatis-plus所提供的分页对象,必须位于第一个参数位置
Page selectPageVo(@Param("page")Page page,@Param("age") Integer age);
}
@DisplayName("根据自定义的sql语句来获取分页信息")
@Test
public void testPageByMySql(){
Page page=new Page<>(1,3);
userMapper.selectPageVo(page,20);
//获取当前页的数据
System.out.println("当前页的数据:"+page.getRecords());
//获取当前页页码
System.out.println("当前页的页码:"+page.getCurrent());
//获取当前页数据的个数
System.out.println("当前页的数据数:"+page.getSize());
//获取总记录数
System.out.println("数据库总数据数:"+page.getTotal());
//是否有下一页
System.out.println("是否有下一页:"+page.hasNext());
//是否有上一页
System.out.println("是否有上一页:"+page.hasPrevious());
System.out.println("一共有"+page.getPages()+"页");
}
数据库中增加表
CREATE TABLE t_product
(
id BIGINT(20) NOT NULL COMMENT '主键ID',
NAME VARCHAR(30) NULL DEFAULT NULL COMMENT '商品名称',
price INT(11) DEFAULT 0 COMMENT '价格',
VERSION INT(11) DEFAULT 0 COMMENT '乐观锁版本号',
PRIMARY KEY (id)
);
添加数据
INSERT INTO t_product (id, NAME, price) VALUES (1, '外星人笔记本', 100);
添加实体类与接口
@Data
public class Product {
private Long id;
private String name;
private Integer price;
}
@Mapper
public interface ProductMapper extends BaseMapper {
}
测试
@Test
public void testConcurrentUpdate() {
//1、小李
Product p1 = productMapper.selectById(1L);
System.out.println("小李取出的价格:" + p1.getPrice());
//2、小王
Product p2 = productMapper.selectById(1L);
System.out.println("小王取出的价格:" + p2.getPrice());
//3、小李将价格加了50元,存入了数据库
p1.setPrice(p1.getPrice() + 50);
int result1 = productMapper.updateById(p1);
System.out.println("小李修改结果:" + result1);
//4、小王将商品减了30元,存入了数据库
p2.setPrice(p2.getPrice() - 30);
int result2 = productMapper.updateById(p2);
System.out.println("小王修改结果:" + result2);
//最后的结果
Product p3 = productMapper.selectById(1L);
//价格覆盖,最后的结果:70
System.out.println("最后的结果:" + p3.getPrice());
}
--查询的语句,同时查出版本
SELECT id,`name`,price,`version` FROM product WHERE id=1
--修改语句,修改时检查版本并在修改完成后更新版本信息
UPDATE product SET price=price+50, `version`=`version` + 1 WHERE id=1 AND
`version`=1
@Data
public class Product {
private Long id;
private String name;
private Integer price;
@Version //表示乐观锁版本号字段
private Integer version;
}
@Configuration
public class MybatisPlusConfig {
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor(){
MybatisPlusInterceptor interceptor=new MybatisPlusInterceptor();
//添加分页插件
interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
//添加乐观锁插件
interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
return interceptor;
}
}
@DisplayName("模拟数据更新冲突与乐观锁的实现")
@Test
public void testProduct01(){
//小李查询商品价格,版本号0
Product productLi = productMapper.selectById(1);
System.out.println("小李查询的商品价格:"+productLi.getPrice());
//小王查询商品价格,版本号0
Product productWang = productMapper.selectById(1);
System.out.println("小李查询的商品价格:"+productWang.getPrice());
//小李将商品价格+50元,版本号1
productLi.setPrice(productLi.getPrice()+50);
productMapper.updateById(productLi);
//小王将商品价格-30元,版本号是0所以不能更新成功
productWang.setPrice(productWang.getPrice()-30);
int i = productMapper.updateById(productWang);
if (i==0){
//i=0说明操作失败,也就是版本号不是最新版,重新获取数据并进行更新
Product productNew = productMapper.selectById(1);
productNew.setPrice(productNew.getPrice()-30);
productMapper.updateById(productNew);
}
//老板查询商品价格
System.out.println("老板查询的商品价格:"+productMapper.selectById(1).getPrice());
}