SpringBoot配置并使用mybatis-plus分页插件

Springboot:配置
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor mybatisPlusInterceptor = new MybatisPlusInterceptor();
        mybatisPlusInterceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.H2));
        return mybatisPlusInterceptor;
    }
测试分页:
 @Test
    public  void  testDividingPage(){
        //1  创建page对象
        Page page = new Page<>(1,3);
        //调用mp分页查询方法
        //调用mp分页查询过程中,底层封装
        //把分页所有数据封装到page对象里面
        userMapper.selectPage(page, null);
        //通过page对象获取分页数据
        System.out.println(page.getCurrent());//获取当前页
        System.out.println(page.getRecords());//获取每页数据list集合
        System.out.println(page.getSize());//每页显示记录数
        System.out.println(page.getTotal());//总记录数
        System.out.println(page.getPages());//总页数

        System.out.println(page.hasNext());//是否有下一页
        System.out.println(page.hasPrevious());//是否由上一页
    }
 

你可能感兴趣的:(spring)