Is it possible with Springs auto implemented repositories to limit the result size of the findAll method?
I\'m trying to have something like the following declared in th
If you dont have a Pageable
object that came from your controller and just need to get X amount of objects from DB, you can do the following:
First, your Repository class has to extend JpaRepository
so it wil be able to query using a Pageable object.
Second, you can define a Pageable object this way:
Pageable limit = PageRequest.of(0,10);
return repository.findall(limit);
In this case, the query would return the first 10 objects.
You can find more info here (Scroll down to 4.1, Example 4)
Note that the example actually extends PagingAndSortingRepository
but JpaRepository
contains all the methods from PagingAndSortingRepository
and has additional functions aswell.
Edit: Thanks to @Zunnii for pointing out that new PageRequest()
is now deprecated. I edited the snippet above to reflect that.