Spring Data JpaRepository findAll(Iterable <id> ids)+ findAll(排序排序)

时间:2015-06-29 04:03:12

标签: java spring sorting spring-data-jpa

使用Spring Data JpaRepository有任何能力通过一些排序获取给定Id的选择集合。这意味着我需要启用以下查询。我发现一些solution适用于@NamedQuery,但我无法启用它,因为我正在使用 Spring-data-jap 1.4.2.RELEASE 。感谢。

public Iterable<User> findAll(Iterable<Integer> userIds) {

 Sort sort = new Sort(Direction.ASC, "name");

 Iterable<User> users = userRepository.findAll(userIds, sort); 

 return users; 
}

1 个答案:

答案 0 :(得分:8)

只需声明一个这样的查询方法:

public interface UserRepository extends Repository<User, Integer> {

  Iterable<User> findByIdIn(Collection<Integer> ids, Sort sort);
}