Slide 14
Slide 14 text
Unless otherwise indicated, these slides are © 2013-2015 Pivotal Software, Inc. and licensed under a
Creative Commons Attribution-NonCommercial license: http://creativecommons.org/licenses/by-nc/3.0/
Paging and Sorting
8
public interface CoolPersonRepo extends CrudRepository {
Page findAll(Pageable p)
Page findByFirstname(String f, Pageable p)
List findAll(Sort s)
List findByFirstname(String f, Sort s)
Page findByFirstname(String f, Pageable p, Sort s)
}