I’m adding envers to an existing hibernate entities. Everything is working smoothly so far as far as auditing, however querying is a different issue because the revision tables aren’t populated with the existing data. Has anyone else already solved this issue? Maybe you’ve found some way to populate the revision tables with the existing table? Just thought I’d ask, I’m sure others would find it useful.
I’m adding envers to an existing hibernate entities. Everything is working smoothly so far
Share
You don’t need to.
AuditQuery allows you to get both RevisionEntity and data revision by :
This will construct a query which returns a list of Object [3]. Fisrt element is your data, the second is the revision entity and the third is the type of revision.