本文介绍了休眠@PostLoad 永远不会被调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
查看了许多论坛,但没有找到答案...简单的东西,用@PostLoad 注释的方法永远不会被调用...通过@EntityListeners 添加了侦听器,但问题仍然存在.我正在使用基于 SessionFactory 的配置.
Looked at many forums but haven't found answer...Simple stuff, method annotated with @PostLoad never gets invoked...added listener via @EntityListeners but problem remains. I'm using SessionFactory based configuration.
推荐答案
当使用基于 SessionFactory
的配置时,EJB3 @PostLoad
注释不起作用,post-load 方法永远不会被调用.
The EJB3 @PostLoad
annotation doesn’t work when using a SessionFactory
based configuration, the post-load method will never get called.
要么使用 Hibernate 的 拦截器或事件或基于 EntityManager
的配置.
Either use Hibernate's Interceptors or events or an EntityManager
based configuration.
这篇关于休眠@PostLoad 永远不会被调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!