Spring Data JPA. How to get only a list of IDs from findAll() method
问题 I have a very complicated model. Entity has a lot relationship and so on. I try to use Spring Data JPA and I prepared a repository. but when I invoke a method findAll() with specification for the object a have a performance issue because objects are very big. I know that because when I invoke a method like this: @Query(value = "select id, name from Customer ") List<Object[]> myFindCustomerIds(); I didn't have any problems with performance. But when I invoke List<Customer> findAll(); I had a