2014-10-31 180 views
5

我有一個倉庫,看起來像這樣:春數據JPA庫:IN子句中的源查詢不能

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。請指向正確的方向。

回答

11

嘗試沒有

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

看起來奏效,謝謝。爲什麼有些地方需要這些藏品的人?我有其他幾個需要parens的存儲庫,我可以看到的唯一區別是parens是在實體的集合中,而不是param。這是區別嗎? – 2014-10-31 14:57:06

+1

我的參考是[這篇文章](http://stackoverflow.com/a/4379008/4074715),它說,你不需要具有集合值參數的parens。顯然,Hibernate在不同版本中表現不同,不知道EclipseLink。找不到任何官方的JPA參考資料,如果我找到了某些東西,我會更新我的答案。 – 2014-10-31 15:01:52

+2

[這裏](http://stackoverflow.com/a/2793690/4074715)是另一篇關於這方面的文章,參考了Hibernate的bug以及參數周圍所需的參數。 – 2014-10-31 15:10:17

1

最新的Spring數據JPA的版本支持括號內的關鍵字,可用於創建查詢類似以下內容:

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