Java MyBatis-Plus(5)MybatisPlus自定义分页
序言
现在主流的分页插件有PageHelper和MybatisPlus的IPage
关闭分页
PageHelper配置
pageSize = 0
MybatisPlus的IPage
current=-1, size=-1
自定义的 mapper#method 使用分页
IPage<UserVo> selectPageVo(IPage<?> page, Integer state);
// or (class MyPage extends Ipage<UserVo>{ private Integer state; })
MyPage selectPageVo(MyPage page);
// or
List<UserVo> selectPageVo(IPage<UserVo> page, Integer state);
<select id="selectPageVo" resultType="xxx.xxx.xxx.UserVo"> SELECT id,name FROM user WHERE state=#{state} </select>
如果返回类型是 IPage 则入参的 IPage 不能为null,因为 返回的IPage == 入参的IPage; 如果想临时不分页,可以在初始化IPage时size参数传 <0 的值;
如果返回类型是 List 则入参的 IPage 可以为 null(为 null 则不分页),但需要你手动 入参的IPage.setRecords(返回的 List);
如果 xml 需要从 page 里取值,需要page.属性
获取
资料
https://baomidou.com/pages/97710a/#paginationinnerinterceptor
https://blog.csdn.net/ZLK1142/article/details/114981487