org.hibernate.HibernateException: No CurrentSessionContext configured!

来源:互联网 发布:大智慧mac版好用吗 编辑:程序博客网 时间:2024/05/18 12:02

org.hibernate.HibernateException: No CurrentSessionContext configured!错误

解决方案:

在集成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> 


0 0
原创粉丝点击