MyBatis中的分页查询可以通过使用RowBounds对象或者使用Mapper接口中的@SelectProvider注解来实现。具体步骤如下:
- 使用RowBounds对象:
int offset = 0; // 起始行 int limit = 10; // 每页显示条数 RowBounds rowBounds = new RowBounds(offset, limit); ListuserList = sqlSession.selectList("com.example.mapper.UserMapper.selectUsers", null, rowBounds);
- 使用@SelectProvider注解:
@SelectProvider(type = UserProvider.class, method = "selectUsers") ListselectUsers(@Param("offset") int offset, @Param("limit") int limit);
public class UserProvider { public String selectUsers(Mapparameter) { 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; // 每页显示条数 ListuserList = userMapper.selectUsers(offset, limit);
以上就是MyBatis中实现分页查询的方法。通过设置RowBounds对象或者使用@SelectProvider注解,可以轻松地实现分页功能。