In Hibernate Envers, all related collections of an entity are loaded lazy, regardless of what fetch type is set. So when auditquerying for entity that has a collection of other entities (both audited, of course), the collection is a SetProxy at first (can be seen when debugging).

So, how do I initialize that proxy? Using Hibernate.initialize has no effect (I suspect because hibernate and envers are using different proxy objects). I know I can initialize the set by iterating over its items, but that isn't an option for me because I have multiple collections in an entity and not to mention the maintainence issues.

I need to initialize them eagerly because I'm accessing the collection at a later point in time when the hibernate session is already closed (converting the domain objects into dtos).

I'm using Hibernate 3.5.6.

link|improve this question

I can't get this sh!t to work either! Envers seems to ignore the fetch plan! I have several entities set to eager fetch with a SELECT fetch mode (because I know they are always in the 2nd level cache - read only and eternal). I am getting lazy initialization errors when rendering the JSPs. PAIN IN THE YOU-KNOW-WHAT. :( Grrr! – les2 Apr 25 '11 at 22:10
feedback

2 Answers

There's something wrong with your design.

If you need to initialize them inside an interceptor (I suspect Envers works by intercepting hibernate calls), it means that you need to know about your domain model beforehand. Auditing should be a completely independeny concern from domain modeling.

Having this said, you can roll your own initializer using some generic reflection method for iterating the collection, or you can use the Open-Session-In-View pattern and adapt it to work with Envers (ie, inside your interceptor).

Bear in mind that accessing these items will probably trigger other queries, which can be confusing if you analyze the logs.


Edit: It seems that hibernate has fetch profiles, which can let you choose a fetch plan at runtime. See this SO question and the docs.

link|improve this answer
I am not sure what you mean by "initializing them inside an interceptor". After all, I am getting the domain objects as it is supposed to by the Envers API (executing an AutitQuery via the AuditReader). However, my problem is indeed an open issue (opensource.atlassian.com/projects/hibernate/browse/HHH-3552) as I found out later. – Teinacher Mar 24 '11 at 10:04
Got the same issue. How did you get around it in the end? – ndtreviv Sep 19 '11 at 11:51
There is some kind of work around. You have to call size() on the collections. The Envers proxy objects will then be initialized. – Teinacher Mar 20 at 12:47
feedback
up vote 0 down vote accepted

Apparently, this is an open issue with Hibernate Envers. There is already an existing issue in their JIRA: https://hibernate.onjira.com/browse/HHH-3552. Feel free to vote on it, maybe it will speed things up, when they see that there are some people wanting this to be fixed ;)

Until the Envers team fixes this issue, there is a work around which works for me: Calling size() on the collections initializes the proxy objects.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.