Iterate over large collection in MongoDB via spring-data

前端 未结 7 2064
误落风尘
误落风尘 2021-01-31 17:18

Friends!

I am using MongoDB in java project via spring-data. I use Repository interfaces to access data in collections. For some processing I need to iterate over all el

7条回答
  •  梦谈多话
    2021-01-31 18:14

    Another way:

    do{
      page = repository.findAll(new PageRequest(pageNumber, pageLimit));
      pageNumber++;
    
    }while (!page.isLastPage());
    

提交回复
热议问题