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

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

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

猜你喜欢

转载自blog.csdn.net/caiyibing1992/article/details/82707302