org.hibernate.HibernateException: No CurrentSessionContext configured 异常解决.
发生异常环境及行为:
项目中使用spring/hibernate框架时,获取对象发生错误:
分析:
需要进行SessionFactory.getCurrentSession()操作,配置文件中需要如下配置:
<prop key="hibernate.current_session_context_class">thread</prop>
?
注:红色字体
?
?
-----------工作积累 尹当