Hibernate – No CurrentSessionContext configured

If you encounter an error like:

org.hibernate.HibernateException: No CurrentSessionContext configured!

you probably want to add this line to your hibernate.cfg.xml

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

Kommentarfunktion ist deaktiviert