我正在尝试通过此博客步骤。
http://leakfromjavaheap.blogspot.com.es/2013/08/prepersist-and-preupdate-not-working.html
但是从Hibernate 4.3开始,hibernate-entitymanager.jar中的事件包将被删除。
另一方面,我一直在阅读有关拦截器和事件的内容。 http://docs.jboss.org/hibernate/orm/4.3/manual/en-US/html_single/#events
这只是实现@PrePersist行为的两种方式吗?或者可以在SessionFactory中使用@EntityListeners注释?虽然我更喜欢win @PrePersist注释兼容性。
提前谢谢。
答案 0 :(得分:6)
使用Hibernate 4,您可以使用Integerator spi方法。
虽然hibernate团队建议使用JPA EntityManager,但有时候你只想继续使用旧的SessionFactory和JPA注释。
<依赖性>
<&的groupId GT; org.hibernate作为< /&的groupId GT;
< artifactId的>冬眠-的EntityManager< / artifactId的>
<版本> 4 * LT; /版本>
< /依赖性>
org.hibernate.jpa.event.spi.JpaIntegrator
价:
arkuarku.wordpress.com/2014/10/23/spring-hibernate4-enable-jpa-prepersistpreupdate-annotation-using-sessionfactroy/
请参阅:
https://docs.oracle.com/javase/tutorial/sound/SPI-intro.html
http://in.relation.to/2012/01/09/event-listener-registration/