#jpa自带的page类()springboot自带
帮助我们分页
public Page<Comment> findByDetailid(Long id,Pageable pageable);
括号中第一个属性表示根据什么性质排列,第二个属性为保存你分页的配置
在controller层
@RequestMapping("find/{id}/{page}")
public Page<Comment> getPageComments (@PathVariable("id") Long id,@PathVariable("page") Integer page){
Pageable pageable =new PageRequest(page, 3, Sort.Direction.ASC,"id");
Page<Comment> ls=commentRepository.findByDetailid(id,pageable);
return ls;
}
第一个参数表示页数,第一页从0开始,第二个参数为一页包含几条内容
Sort.Direction.ASC表示排序方向为从小到大,最后一个是排序的根据
在浏览器中还可以帮我们传出totalElements: 21 totalPages: 7 last:false
一共多少条及,一共多少页当前页是否为最后一页
##class选择器
class='page-numbers' id=pagenum $(".page-numbers")