解决"No CurrentSessionContext configured"异常

 

 【问题】

异常信息如下:

 

【原因】 

因为在代码中用到了sessionFactory.getCurrentSession(),这个是从上下文中获取sessioin的,配置文件中没有指定获取的方式。

 

【解决】

在hibernate配置中添加

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

 

 

你可能感兴趣的:(session)