2016-09-15 18 views
1
select s.id,s.a.id,s.siteName from site s where s.a.id=:b 

この文は実行できません。複数の値を持つJPA選択クエリ

ERROR: 
Cannot create TypedQuery for query with more than one return using requested result type [com.a.b.entity.site] 
+0

http://www.java2s.com/Tutorials/Java/JPA/4860__JPA_TypedQuery.htm –

+0

HTTPを整数に変換するためにこれらを使用:// stackoverflowの。 com/questions/10807496/error-can-create-typedquery-for-more-than-one-return – hasnae

+0

ありがとうございました。私はネイティブクエリを使用していました。 –

答えて

2

あなたのサブ質問のための回避策: new Integer((int) object[0])

+1

これは動作します。ありがとう –

関連する問題