No CurrentSessionContext configured

cococoala發表於2011-07-06
配置檔案hibernate.cfg.xml

在整合Hibernate的環境下(例如Jboss),在hibernate.cfg.xml中session-factory段加入:
<property name="current_session_context_class">jta</property>

在不整合Hibernate的環境下(例如使用JDBC的獨立應用程式),在hibernate.cfg.xml中session-factory段加入:
<property name="current_session_context_class">thread</property>

相關文章