在java中获取hibernate会话错误

时间:2011-03-27 09:51:49

标签: java hibernate

我有这个

SessionFactory sessionFactory = new AnnotationConfiguration()
        .configure("com/vaannila/service/hibernate.cfg.xml")
        .buildSessionFactory();

          Session session = sessionFactory.getCurrentSession();

我收到此错误

org.hibernate.HibernateException: No CurrentSessionContext configured!
    org.hibernate.impl.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:542)

2 个答案:

答案 0 :(得分:2)

您必须在hibernate.xml文件中设置hibernate.current_session_context_class。

请参阅以下内容:http://docs.jboss.org/hibernate/core/3.3/reference/en/html/session-configuration.html#configuration-j2ee-currentsession

答案 1 :(得分:2)

在cfg文件中有此条目。

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