Mybatis-plus分页插件的配置和使用

pom依赖3.4.0以下使用的是PaginationInterceptor来配置的。

今天我们使用新版的方式MybatisPlusInterceptor来对分页插件进行配置 

1 导入依赖: 

        
            com.baomidou
            mybatis-plus-boot-starter
            3.5.1
        

 2 创建配置类MybatisPlusConfig


@Configuration
@MapperScan("com.ywt.mybatisplus.mapper")//添加包扫描
public class MybatisPlusConfig {

    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor(){
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));//指定数据库
        return interceptor;
    }
}
3 测试,看一下表中的数据,一共三条

Mybatis-plus分页插件的配置和使用_第1张图片

我们在测试类中进行查询测试

package com.ywt.mybatisplus;

@SpringBootTest
class MybatisPlusApplicationTests {

    @Autowired
    private StudentMapper studentMapper;

    @Test
    void pageTest(){
        Page studentPage = new Page<>(1,2);//1为页码 2为数量
        Page pageList = studentMapper.selectPage(studentPage, null);
        System.out.println(pageList.getRecords());//数据内容
        System.out.println(pageList.getTotal());  //返回的总条数
    }
}

 可以看到我们只输出了两条数据,total记录的是表中一共有几条数据,类似count()Mybatis-plus分页插件的配置和使用_第2张图片

你可能感兴趣的:(java,spring,boot,开发语言,maven,intellij-idea)