spring data jpa limit pagesize, how to set to maxSize

后端 未结 12 2559
自闭症患者
自闭症患者 2020-12-15 20:09

I have one requirement is to search by pageable and non-pageable,

and in my Java code, I use spring data jpa Pageable class,

 Pageable pageable = new         


        
12条回答
  •  孤街浪徒
    2020-12-15 20:54

    spring.data.rest.max-page-size=1000
    

    use this property in application.property and assign a higher value.

提交回复
热议问题