Hibernate @PostLoad never gets invoked

The EJB3 @PostLoad annotation doesn’t work when using a SessionFactory based configuration, the post-load method will never get called.

Either use Hibernate’s Interceptors or events or an EntityManager based configuration.

Leave a Comment