MybatisPlus分页查询
时间: 2023-05-20 18:02:21 浏览: 146
mybatisplus分页查询
MybatisPlus分页查询可以通过使用Page类来实现,具体代码如下:
//创建分页对象
Page<User> page = new Page<>(1, 10);
//执行分页查询
IPage<User> userPage = userMapper.selectPage(page, null);
//获取分页结果
List<User> userList = userPage.getRecords();
其中,Page类的构造函数需要传入两个参数,第一个参数表示当前页码,第二个参数表示每页显示的记录数。selectPage方法需要传入两个参数,第一个参数表示分页对象,第二个参数表示查询条件。最后,通过getRecords方法获取分页结果。
阅读全文