通用Mapper条件查询后并分页

// 创建 Example对象 负责条件查询
Example example = new Example(Chapter.class);
// 按id查询
example.createCriteria().andEqualTo(“id”,id);
// 创建 RowBounds对象 负责分页查询 第一个参数index,第二个参数每页展示条数
RowBounds rowBounds = new RowBounds((page - 1) * rows, rows);
// 集成 按条件查询并分页 将两个对象放到继承Mapper接口的接口中
List chapters = chapterDAO.selectByExampleAndRowBounds(example, rowBounds);

你可能感兴趣的:(通用Mapper条件查询后并分页)