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

我有一个看起来像这样的存储库:

public interface UserRepository extends JpaRepository { User findByEmailIgnoreCase(String email); @Query("select u from User u where u.id in (:ids)") Set getByIdInSet(@Param("ids") Set 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。 请指出我正确的方向。

不用括号试试吧

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

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

 Set findByIdIn(Set ids);