No CurrentSessionContext configured!

来源:互联网 发布:iphone7专业拍照软件 编辑:程序博客网 时间:2024/06/07 14:32
org.hibernate.HibernateException: No CurrentSessionContext configured!
null
at org.hibernate.impl.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:685)
at Utils.HibernateSessionFactory.getSession(HibernateSessionFactory.java:34)
at biz.UserBiz.getUser(UserBiz.java:17)

at test.Test.main(Test.java:9)


在使用hibernate框架时  出现ibernate.HibernateException: No CurrentSessionContext configured!


是在使用getCurrentSession();方法获得会话时,自己的hibernate.cfg.xml配置文件里的会话创建机制没有设置好


应该在里面加上一段


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


否则就不能使用getCurrentSession();方法获得会话

原创粉丝点击