码迷,mamicode.com
首页 > 其他好文 > 详细

No CurrentSessionContext configured

时间:2014-12-23 22:40:27      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:hibernate   currentsessioncontex   

今天编写hibernate程序碰到这个问题:

   Exception in thread "main" org.hibernate.HibernateException:No CurrentSessionContext configured!

   atorg.hibernate.impl.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:698)

   atcom.HibernateProxy.Interceptor.MyTransactor.beginTransaction(MyTransactor.java:13)

   atcom.HibernateProxy.Interceptor.PersonDaoInterceptor.invoke(PersonDaoInterceptor.java:22)

   atcom.sun.proxy.$Proxy0.savePerson(Unknown Source)

   atcom.HibernateProxy.test.Test.main(Test.java:28)

解决方法为:

打开hibernate.cfg.xml文件,添加如下代码:

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

或者用Myeclipse hibernate config editor打开hibernate.cfg.xml,添加current_session_context_class,如下图所示

技术分享



No CurrentSessionContext configured

标签:hibernate   currentsessioncontex   

原文地址:http://blog.csdn.net/longshengguoji/article/details/42110681

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!