I have an Envers query that returns a lazy result although the field is defined in hibernate-mapping with lazy="false".

I have looked it up at the Hibernate-Envers forums and didn't find any useful information.

So this is what i have:

hibernate-mapping - hibernate-mapping

This is the result during run-time

This is the result during run-time

Any idea about what am I doing wrong or how can i get the real object instead of the lazy one?

Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Eager loading is not supported by Envers. All relationships are lazy.

Source

link|improve this answer
So what should I do, if want to get the real object or to get a more detailed Proxy? it's not a HibernateProxy object so i can't really use - (HibernateProxy)proxy.getHibernateLazyInitializer().getImplementation(); – Ido.Co Oct 2 '11 at 14:40
One thing you could do is just not use the Envers API and use plain JPA. You then would have to model your audit tables as @Entity(s). We had to do this due to the major limitations of the Envers API, and I think this way you might be able to overcome the lazy initialization issues too. – Gonzalo Garcia Lasurtegui Oct 2 '11 at 14:48
Thanks. Is there any plan of adding eager loading support to Envers? – Ido.Co Oct 3 '11 at 9:42
feedback

Your Answer

 
or
required, but never shown

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