This content has been marked as final.
Show 1 reply
-
1. Re: Hibernate Envers: Initializing ListProxy of related objects
piskantali Apr 5, 2015 6:24 AM (in response to piskantali)The problem was the following: I started auditing of entities when there already were users and usergroups in the database. Let's say I was modifying some user's groups. This modification caused in addition of corresponding rows in
User_AUD
andUser_UserGroup_AUD
tables, butUserGroup_AUD
table was still empty. Later when I was querying for revisions ofUser
entity, it wasn't able to find relatedUserGroup
entities since there was no record inUserGroup_AUD
table about those user groups.