PageHelper与MyBatisPlus IPage分页插件的使用区别

本文介绍了MybatisPlus的IPage分页插件和PageHelper的使用方法。MybatisPlus需要定义包含IPage类型的接口,而PageHelper直接使用List查询接口即可实现分页。两者在引入依赖、接口定义和返回数据结构上存在差异,前端在对接时需要注意这些区别。
摘要由CSDN通过智能技术生成

IPage分页插件

①Mapper 定义分页查询接口,入参及返回值需要有IPage类型

IPage<PatientInfo> getPatientPage(IPage<PatientInfo> page,@Param("option") QueryOption option);

②编写映射文件xml

<select id = "getPatientPage" resultMap="getPatientPageMap">
    select * 
    from view_patient_info
    <where>
        <if test="option.patientId != null">
            and patient_id = #{option.patientId}
        </if>
    </where>
</select>

③在service中调用mapper接口

public IPage<PatientInfo> getPatientInfoPage(QueryOption option){
    IPage<PatientInfo> page = new Page<>(option.getPageNum(),option.getPageSize());
    baseMapper.getPatientPage(page,option);
    return page;
}

这样就可以了。

PageHelper

①引入依赖

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper-spring-boot-starter</artifactId>
    <version>1.3.1</version>
</dependency>

②在service中调用mapper接口

PageHelper不需要在Mapper接口中加入Page参数,可以直接用原先的Mapper里的List查询接口。

public PageInfo<PatientInfo> getPatientInfoPage(QueryOption option){
    PageHelper.startPage(option.getPageNum(),option.getPageSize());
    List<PatientInfo> list = baseMapper.getPatientList(option);
    PageInfo<PatientInfo> pageInfo = new PageInfo<>(list);
    return pageInfo;
}

总结:

IPage是MybatisPlus自带的插件,不需要额外引入依赖,但查询分页需要定义包含IPage类型的参数的专门接口。

PageHelper需要引入额外的依赖,但不强制要求使用包含分页参数的专门接口,可以直接使用已有的List查询接口。

另外它们返回的数据结构也有一点小区别。前端对接的时候要注意。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值