主要是记录一些在使用spring-data-jpa
+ Hibernate
过程中遇到的一些问题,和要注意的知识点
Pageable 和 PageRequest 分页
在Mysql、Oracle中分页从0开始1
Pageable pageable = new PageRequest(0, 10);
查看org.springframework.data.domain.PageRequest
源码可知,分页从0开始
1 | public Pageable first() { |
主要是记录一些在使用spring-data-jpa
+ Hibernate
过程中遇到的一些问题,和要注意的知识点
在Mysql、Oracle中分页从0开始1
Pageable pageable = new PageRequest(0, 10);
查看org.springframework.data.domain.PageRequest
源码可知,分页从0开始
1 | public Pageable first() { |