这段时间开始研究hibernate,开始了解最新的hibernate技术(问题一)Hibernate的No CurrentSessionContext configured 解决方案

今天按照满江红翻译的hibernate文档来做第一个简单的程序,却出现No CurrentSessionContext configured 问题。在google上搜索,却发现是
是由于没有配置:current_session_context_class
在hibernate的配置文件中增加<property name="current_session_context_class">thread</property>
原因:当你使用 Hibernate session factory的getCurrentSession() 函数时候,你可能见到过"No CurrentSessionContext configured!"

出现这个问题,是因为你没有正确配置 Hibernate internal session context management .



你可能感兴趣的:(这段时间开始研究hibernate,开始了解最新的hibernate技术(问题一)Hibernate的No CurrentSessionContext configured 解决方案)