How would I come over that limitation:
public List<Owner> getAllOwners() {
Pageable pageable = PageRequest.of(0, 100);
Page<Owner> ownerPage = ownerRepository.findAll(pageable);
return ownerPage.getContent();
}
?
Normally I would like to evaluate the whole dataset. Couldn't I handover the Pageable-Object?
How would I come over that limitation:
?
Normally I would like to evaluate the whole dataset. Couldn't I handover the Pageable-Object?