QueryPhaseExecutionException[Result window is too large, from + size must be less than or equal to:

朴灿烈づ我的快乐病毒、 2022-05-12 05:40 217阅读 0赞

查询返回数据条数过大,最大10000条:

  1. //错误代码
  2. Pageable<WayBill> pageData = new PageRequest(0,20000)
  3. //修改为
  4. Pageable<WayBill> pageData = new PageRequest(0,10000)

发表评论

表情:
评论列表 (有 0 条评论,217人围观)

还没有评论,来说两句吧...

相关阅读