MyBatis中的分页查询可以通过使用RowBounds对象或者使用Mapper接口中的@SelectProvider注解来实现。具体步骤如下:
int offset = 0; // 起始行
int limit = 10; // 每页显示条数
RowBounds rowBounds = new RowBounds(offset, limit);
List<User> userList = sqlSession.selectList("com.example.mapper.UserMapper.selectUsers", null, rowBounds);
@SelectProvider(type = UserProvider.class, method = "selectUsers")
List<User> selectUsers(@Param("offset") int offset, @Param("limit") int limit);
public class UserProvider {
public String selectUsers(Map<String, Object> parameter) {
int offset = (int) parameter.get("offset");
int limit = (int) parameter.get("limit");
return "SELECT * FROM user LIMIT " + offset + "," + limit;
}
}
int offset = 0; // 起始行
int limit = 10; // 每页显示条数
List<User> userList = userMapper.selectUsers(offset, limit);
以上就是MyBatis中实现分页查询的方法。通过设置RowBounds对象或者使用@SelectProvider注解,可以轻松地实现分页功能。