一尘不染

休眠:未配置CurrentSessionContext

hibernate

我不断得到:

HibernateException:未配置CurrentSessionContext!

在我的代码中。其他返回的唯一信息是罪魁祸首是:

<property name="current_session_context_class">thread</property>

在我的hibernate.cfg.xml中。我的hibernate.cfg.xml文件中确实有该文件,并且我正在Tomcat
6中运行它。有人知道其他可能的原因吗?


阅读 234

收藏
2020-06-20

共1个答案

一尘不染

我相信您需要将current_session_context_class设置为实际的类…我为此配置了hibernate.cfg.xml,如下所示:

<property name="hibernate.current_session_context_class">org.hibernate.context.ThreadLocalSessionContext</property>

上面的代码用于mySql数据库,但是我认为上面属性的数据库类型不重要

希望这可以帮助

2020-06-20