Iterate over large collection in MongoDB via spring-data

前端 未结 7 2044
误落风尘
误落风尘 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());
    
    0 讨论(0)
提交回复
热议问题