web-dev-qa-db-ja.com

JPAで注文を作成し、クエリを制限する方法

可能性のある複製:
JPAを使用して上位1件の結果を選択

次のクエリを作成するときに、テーブル 'MasterScrip'の 'totalTradedVolume'に基づいて上位10件の結果を取得したい:

Collection<MasterScrip> sm=null;
   sm=em.createQuery("select m from MasterScrip m where m.type = :type order by m.totalTradedVolume limit 2").setParameter("type", type).getResultList();

私は次の例外を受け取ります:

Caused by: Java.lang.IllegalArgumentException: An exception occurred while creating a query in EntityManager: 
Exception Description: Syntax error parsing the query [select m from MasterScrip m where m.type = :type order by m.totalTradedVolume limit 2], line 1, column 78: unexpected token [limit].
Internal Exception: NoViableAltException(80@[])

私のJPAクエリに問題があります。誰かが私を修正できますか?

37
z22

limitはJPAでは認識されません。代わりにquery.setMaxResultsメソッドを使用できます:

sm = em.createQuery("select m from MasterScrip m where m.type = :type 
        order by m.totalTradedVolume")
    .setParameter("type", type)
    .setMaxResults(2).getResultList()
66
Hari Menon

Query setFirstResult and setMaxResultメソッドで解決できます

28
RP-