一、代码使用
public Page<Recipe> queryProgress(Pageable pageable){
//查询list
List<Entity> list = service.findAll();
Page<Recipe> page = new PageImpl<>(list,pageable,total);
return page;
}
二、总结
这是jpa分页查询基本使用。
public Page<Recipe> queryProgress(Pageable pageable){
//查询list
List<Entity> list = service.findAll();
Page<Recipe> page = new PageImpl<>(list,pageable,total);
return page;
}
这是jpa分页查询基本使用。