2010-03-25 104 views
7

這是我的問題,我必須使用一個大的SP,並且沒有時間在java中重寫。 所以我使用Hibernate標準,我不知道我是否可以調用它。謝謝大家。我可以使用休眠條件調用存儲過程嗎?

+0

Hibernate也允許你執行數據庫直接調用。你也可以這樣做。 – 2010-03-25 13:21:33

+1

謝謝你的答案,但我該怎麼做? – Gaston 2010-03-26 15:49:43

回答

5

請參閱參考文檔中的Using stored procedures for querying

映射查詢是這樣調用的。

List employment = sess.getNamedQuery("BigSP") 
    .list(); 

映射查詢可以返回實體。

<sql-query name="BigSP" callable="true"> 
    <return alias="emp" class="Employment"> 
     <return-property name="employee" column="EMPLOYEE"/> 
     <return-property name="employer" column="EMPLOYER"/> 
     <return-property name="startDate" column="STARTDATE"/> 
     <return-property name="endDate" column="ENDDATE"/> 
     <return-property name="regionCode" column="REGIONCODE"/> 
     <return-property name="id" column="EID"/> 
     <return-property name="salary"> 
      <return-column name="VALUE"/> 
      <return-column name="CURRENCY"/> 
     </return-property> 
    </return> 
    { call BigSP } 
</sql-query> 
2

This document描述瞭如何映射作爲本機查詢執行的存儲過程的結果。

你不能用Criteria API來做,但這不應該。

5

不,您需要使用本機查詢。如果您使用註釋,請參見2.3.2. Mapping native queries

下面的例子:

@Entity 
@NamedNativeQuery(
    name="baz", 
    query="call fooProc(:bar, :i)", 
    callable=true, 
    readOnly=true, 
    resultClass=Foo.class 
) 
public class Foo { 
    private Date when; 
    //... 
} 

,並呼籲它:

@Stateless 
public class FooBean implements FooLocal { 
    @PersistenceContext EntityManager em; 

    public Foo getAFoo(string bar, int i) { 
    Foo result = (Foo)em.createNamedQuery("baz").setParameter("bar", bar).setParameter("i", i).getSingleResult(); 
    return result; 
    } 

} 
+0

謝謝Thivent,但我們不使用annoations :( – Gaston 2010-03-26 15:52:15

+0

@Gaston然後請參閱Lachlan的答案。 – 2010-03-26 15:53:49