在使用SessionFactory的getCurrentSession方法时遇到如下错误,经过检查,原因如下:
是因为在hibernate.cfg.xml文件中忘记进行了如下设置:hibernate.current_session_context_class
如果是在web容器中运行hibernate,则在hibernate.cfg.xml中加入这句话:
<property name="hibernate.current_session_context_class">jta</property>
如果是在一个单独的需要进行JDBC连接的java application中运行hibernate,则这样设置:
<property name="hibernate.current_session_context_class">thread</property>
本文介绍了解决SessionFactory的getCurrentSession方法时出现的错误及其原因。错误源于配置文件hibernate.cfg.xml中未设置hibernate.current_session_context_class属性。文章提供了针对web容器和独立Java应用程序的不同设置方法。
6552

被折叠的 条评论
为什么被折叠?



