Spring Data JPA存储库:派生查询中的IN子句不起作用

时间:2014-10-31 14:42:28

标签: java jpa spring-data spring-data-jpa

我有一个如下所示的存储库:

public interface UserRepository extends JpaRepository<User, Long>
{
    User findByEmailIgnoreCase(String email);

    @Query("select u from User u where u.id in (:ids)")
    Set<User> getByIdInSet(@Param("ids") Set<Long> ids);
}

当我致电getByIdInSet时,我收到以下错误:

Caused by: java.lang.IllegalArgumentException: You have attempted to set a value of type class org.eclipse.persistence.indirection.IndirectSet for parameter ids with expected type of class java.lang.Long from query string select u from User u where u.id in (:ids).
    at org.eclipse.persistence.internal.jpa.QueryImpl.setParameterInternal(QueryImpl.java:933)
    at org.eclipse.persistence.internal.jpa.EJBQueryImpl.setParameter(EJBQueryImpl.java:593)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:606)

显然我不知道是什么意思,因为我尝试更改各种数据类型并仍然得到相同的错误。我传递的id组只包含一个id。请指出我正确的方向。

2 个答案:

答案 0 :(得分:12)

不带括号

尝试
@Query("select u from User u where u.id in :ids")

答案 1 :(得分:4)

最新版本的Spring Data JPA支持IN关键字,可用于创建如下查询:

Set<User> findByIdIn(Set<Long> ids);