spring-bootを使った中での躓いたことや調べたことのメモです。 環境 java: 8 spring-boot: 2.0.1 spring-data-jpa: 2.0.7 前提 以下のEntityで考えます @Entity public class Entity { @Id private int Id; private String name; private int position; // Getter, Setter省略 } List<T> findAll(Sort sort) JpaRepositoryを継承したinterfaceを作成した時点でList<T> findAll(Sort sort)が定義されており、次のようにソートできます。 @Service public class EntityService { @Autowired EntityRepoistory e