No CurrentSessionContext configured 错误的解决_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > No CurrentSessionContext configured 错误的解决

No CurrentSessionContext configured 错误的解决

 2011/12/23 9:32:15  huangyunbin  http://huangyunbin.iteye.com  我要评论(0)
  • 摘要:配置文件的问题解决如下:在集成Hibernate的环境下(例如Jboss),在hibernate.cfg.xml中session-factory段加入:<propertyname="current_session_context_class">jta</property>在不集成Hibernate的环境下(例如使用JDBC的独立应用程序),在hibernate.cfg.xml中session-factory段加入:<
  • 标签:解决 错误
配置文件的问题
解决如下:
    在集成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>
发表评论
用户名: 匿名