如何在isPaged()
对象中使用Pageable
。我已经创建了pageable
对象,
Pageable pageable = new PageRequest (pageNumber,pageSize)
答案 0 :(得分:1)
默认布尔值isPaged()
返回当前的Pageable是否包含分页信息。
就是这样
if (pageable.isPaged()) {
// use it, for example
pageable.getPageSize();
}
答案 1 :(得分:0)
我必须创建新答案,因为我的声誉低于50,因此无法发表评论。
如果进行一些搜索,您将看到Pageable类在spring-data-commons中。
然后您可以从here中看到,您的spring-data-jpa 1.11.9使用了spring-data-commons 1.13.9。发布
此后,您需要搜索spring-data-commons存储库版本1.13.x(位于github中)中的Pageable.java。
繁荣!您会看到在您使用的spring-data-jpa的Pageable类中不包含isPaged方法。
希望这会有所帮助。