2010-06-29 72 views
2

我正在嘗試構建JSF應用程序,並使用hibernate作爲ORM解決方案。問題是我得到我的代碼完整的複製代碼春天可以添加到冬眠?

Transaction tx = null; 
Session session = SessionFactoryUtil.getInstance().getCurrentSession(); 
try { 
    tx = session.beginTransaction(); 

    tx.commit();} 

catch(Exception){} 

在每個功能。春天可以幫我避免這種情況嗎?或者它可以添加什麼,因爲我發現hibernate充滿了特性?

回答

3

是的,這正是Spring可以爲你做的一件事情。

查看參考手冊中的chapter on transaction management

+0

我還有什麼可以在ORM領域? – 2010-06-29 22:18:45

+0

它在13.1節列出:http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/orm.html – 2010-06-30 06:35:19