springboot+mybatis分页插件(pagehelper)

本文介绍了如何在Spring Boot项目中利用PageHelper插件进行MyBatis的动态分页。通过引入PageHelper及其相关依赖,配合简单的实体类SqlPage,可以在执行SQL前初始化分页数据。在application.yml中配置分页插件参数,无需额外的分页方法,即可实现便捷的分页查询功能。
摘要由CSDN通过智能技术生成

pom依赖:

<!--分页插件-->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper</artifactId>
            <version>5.0.0</version>
        </dependency>
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
            <version>1.2.3</version>
        </dependency>
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.2.3</version>
        </dependency>
        <!--分页插件-->

定义分页实体类:

package com.ds.entity;

import com.github.pagehelper.PageHelper;

import java.io.Serializable;

public class SqlPage implements Serializable {

    private Integer index;
    private Integer num;

    public SqlPage() {
    }

    public SqlPage(Integer index, Integer num) {
        this.index = index==null?1:index;
        this.num = num==null?10:num;
        PageHelper.startPage(this.num,this.index);//初始化分页数据
    }

    public SqlPage(String index, String num) {
        this.index = index==null?1:Integer.valueOf(index);
        this.num = num==null?10:Integer.valueOf(num);
        PageHelper.startPage(this.num,this.index);//初始化分页数据
    }

    public Integer getIndex() {
        return index;
    }

    public void setIndex(Integer index) {
        this.index = index;
    }

    public Integer getNum() {
        return num;
    }

    public void setNum(Integer num) {
        this.num = num;
    }
}

使用分页:

 @RequestMapping("/getAllCzyb")
    public RespBean getAllCzyb(@RequestBody SqlPage sqlPage){
        new SqlPage(sqlPage.getIndex(),sqlPage.getNum());
        return RespBean.sucess("",this.czybService.getAllCzyb());
    }

注意:分页插件不需要单独的写方法使用,只需要在执行sql,之前执行PageHelper.startPage(this.num,this.index);//初始化分页数据就可以。

application.yml文件配置

#分页插件
pagehelper:
  helper-dialect: mysql
  reasonable: true
  support-methods-arguments: true
  params: count=countSql
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值