当前位置:网站首页>IPage能正常显示数据,但是total一直等于0
IPage能正常显示数据,但是total一直等于0
2022-07-05 06:51:00 【Emmmmm_1】
问题描述:代码中使用Mybatis-Plus的自动分页,getRecords()正确,但是getTotal()一直等于0
代码逻辑没问题,所以找Mybatis-Plus配置上的问题
尝试的方法:
1. 配置类上是否加了@Configuration
2. 统计的SQL被自动优化了,导致统计结果不准确--->关闭Mybatis-Plus的自动优化
Page<?> page = new Page<>(currentPage, size); // 开启分页
page.setOptimizeCountSql(false); // 关闭mybatisPlus的自动优化
这样的方法效率较低,可以自己写count sql
page.setSearchCount(false);
page.setTotal(mapper.listCount(sql));
参考文章: MyBatis-Plus的IPage分页total不正确问题
3. 设置数据库的类型
PaginationInnerInterceptor page = new PaginationInnerInterceptor();
page.setDbType(DbType.MYSQL);
return page;
4. 检查mybatis-plus-boot-starter版本
3.4.0版本对此部分有更新,如果是旧版本升级,会出现分页失效问题,同时idea会提示PaginationInterceptor过时,新版本改用了MybatisPlusInterceptor
最终是把PaginationInnerInterceptor换成了MybatisPlusInterceptor解决
成功的代码如下:
@Configuration
public class MybatisPlusConfig {
/**
* 实现分页配置
* @return
*/
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor()); // 注册乐观锁插件
interceptor.addInnerInterceptor(new PaginationInnerInterceptor()); // 分页插件
return interceptor;
}
}
这部分代码来源:Page分页records有数据,但是total=0,解决办法
边栏推荐
猜你喜欢
Build a microservice cluster environment locally and learn to deploy automatically
7. Oracle table structure
Use ffmpeg to rotate, flip up and down, and flip horizontally
Volcano resource reservation feature
[algorithm post interview] interview questions of a small factory
UTC, GPS time and Tai
代码中的英语全部
Database mysql all
Ret2xx---- common CTF template proposition in PWN
Ros2 - configuration development environment (V)
随机推荐
Special training of C language array
What is linting
Build a microservice cluster environment locally and learn to deploy automatically
[MySQL 8.0 does not support capitalization of table names - corresponding scheme]
程序中的负数存储及类型转换
Technology blog learning website
C语言数组专题训练
能量守恒和打造能量缺口
解读最早的草图-图像翻译工作SketchyGAN
ROS2——初识ROS2(一)
H5 embedded app adapts to dark mode
Huawei bracelet, how to add medicine reminder?
cgroup_ memcg
睿智的目标检测59——Pytorch Focal loss详解与在YoloV4当中的实现
*P++, (*p) + +, * (p++) differences
Ros2 - workspace (V)
Redis-02. Redis command
Rehabilitation type force deduction brush question notes D3
Adg5412fbruz-rl7 applies dual power analog switch and multiplexer IC
在本地搭建一个微服务集群环境,学习自动化部署