mybatisplus ipage用法
时间: 2023-04-27 19:04:02 浏览: 1379
Mybatis-plus分页插件的使用
MybatisPlus的IPage是一个分页查询的工具类,可以方便地进行分页查询操作。使用IPage需要先创建一个IPage对象,然后设置分页参数,最后调用MybatisPlus的selectPage方法进行查询。IPage的使用方法如下:
1. 创建IPage对象
IPage<User> page = new Page<>(1, 10);
2. 设置分页参数
page.setCurrent(1); // 当前页码
page.setSize(10); // 每页显示的记录数
3. 调用selectPage方法进行查询
IPage<User> userPage = userMapper.selectPage(page, null);
其中,userMapper是MybatisPlus自动生成的Mapper接口,selectPage方法是MybatisPlus提供的分页查询方法。查询结果会封装在IPage对象中,可以通过IPage对象获取分页信息和查询结果。
阅读全文