Mybatis-plus使用分页进行分页查询

Posted King-D

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis-plus使用分页进行分页查询相关的知识,希望对你有一定的参考价值。

首先先配置配置文件

@Configuration
public class MybatisPlusConfig {
    @Bean
    public PaginationInterceptor paginationInterceptor() {
        return new PaginationInterceptor();
    }

}

2.进行分页查询

   @Test
    public void selectPage() {
        QueryWrapper<User> wrapper = new QueryWrapper<>();
        wrapper.ge("age",26);
        Page<User> page = new Page<>(1, 2);
        IPage<User> userIPage = userMapper.selectPage(page, wrapper);
        System.out.println("总条数"+userIPage.getTotal());
        System.out.println("总页数"+userIPage.getPages());

    }
   @Test
    public void selectPage() {
        QueryWrapper<User> wrapper = new QueryWrapper<>();
        wrapper.ge("age",26);
        Page<User> page = new Page<>(1, 2);
        IPage<Map<String,Object>> userIPage = userMapper.selectMapsPage(page, wrapper);
        System.out.println("总条数"+userIPage.getTotal());
        System.out.println("总页数"+userIPage.getPages());
    }

 

以上是关于Mybatis-plus使用分页进行分页查询的主要内容,如果未能解决你的问题,请参考以下文章

mybatis-plus分页查询

mybatis-plus分页查询三种方法

Mybatis-plus之分页泛型转换

Mybatis-plus系列使用Mybatis-plus的selectPage()分页查询没生效

Mybatis-plus系列使用Mybatis-plus的selectPage()分页查询没生效

Mybatis-plus系列使用Mybatis-plus的selectPage()分页查询没生效