欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring boot方式使用MyBatis-Plus分页操作

程序员文章站 2022-07-15 10:13:41
...

  在Spring boot项目中使用MyBatis-Plus的分页功能,需要进行如下配置。

 

单表的分页MyBatis-Plus已经内置了。而多表的联合查询需要自己手动完成。

//Spring boot方式
@EnableTransactionManagement
@Configuration
@MapperScan("com.baomidou.cloud.service.*.mapper*")
public class MybatisPlusConfig {

    /**
     * 分页插件
     */
    @Bean
    public PaginationInterceptor paginationInterceptor() {
        return new PaginationInterceptor();
    }
}