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
Pass a Pageable as a parameter like following:
Pageable
Page findAll(Pageable pageable);