J2EE編程心得-使用Hibernate出現的錯誤及解決方案 更新中...

來源:互聯網
上載者:User

標籤:hibernate

1.  使用Hibernate時出現Session was already closed異常

出現此異常的原因是Session已經被關閉

如果不是使用的SessionFactory.getSession()來獲得Session。

        而是使用SessionFactory.getCurrentSession()方法來獲得Session時,當事務結束的時候,不管是提交還是復原事務,hibernate會自動關閉Session的,

所以不需要手動關閉。

public boolean insert(LiftInfo liftInfo) {Session session = HibernateUtil.currentSession();Transaction tr = null;try {tr = session.beginTransaction();session.save(liftInfo);tr.commit();System.out.println("添加成功..");} catch (HibernateException e) {// TODO Auto-generated catch blocktr.rollback();System.out.println("添加失敗");e.printStackTrace();return false;} finally {HibernateUtil.closeSession();//此處如果寫上session.close()會出現錯誤}return true;}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.