Hibernate event listeners for JPA callbacks

前端 未结 2 1126
忘了有多久
忘了有多久 2020-12-21 00:45

How can I enable the Hibernate event listeners, that handle JPA callbacks?

Currently I am using using Hibernate 4 with SessionFactory configuration, but JPA callback

2条回答
  •  借酒劲吻你
    2020-12-21 01:05

    Add a file named org.hibernate.integrator.spi.Integrator containing a single line

    org.hibernate.jpa.event.spi.JpaIntegrator
    

    in your META-INF/services folder. This will enable JPA lifecycle annotations including @EntityListeners for sessionFactory based configurations.

提交回复
热议问题