Saat menggunakan Spring Data MongoDB, saya pikir umumnya Anda ingin menggunakan Pageable
antarmuka untuk kueri ini. Contoh:
@Query("{status: 'Failed'}")
List<Record> findFailedRecords(Pageable pageable);
// or even better without the @Query annotation just:
List<Record> findByStatus(String status, Pageable pageable);
Kemudian, untuk memanggil:
yourRecordRepo.findFailedRecords(new PageRequest(0, 10));
// or using the other method:
yourRecordRepo.findByStatus("Failed", new PageRequest(0, 10));
Itu akan mengambil halaman pertama dari 10 Catatan yang gagal.