我有这个
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)
答案 0 :(得分:2)
您必须在hibernate.xml文件中设置hibernate.current_session_context_class。
答案 1 :(得分:2)
在cfg文件中有此条目。
<property name="hibernate.current_session_context_class">thread</property>