Populate envers revision tables with existing data from Hibernate Entities - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:58:49Z http://stackoverflow.com/feeds/question/898529 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/898529/populate-envers-revision-tables-with-existing-data-from-hibernate-entities 5 Populate envers revision tables with existing data from Hibernate Entities qbn 2009-05-22T15:38:30Z 2009-07-15T08:30:50Z <p>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. </p> http://stackoverflow.com/questions/898529/populate-envers-revision-tables-with-existing-data-from-hibernate-entities/998836#998836 0 Answer by Pat for Populate envers revision tables with existing data from Hibernate Entities Pat 2009-06-15T22:49:55Z 2009-06-15T22:49:55Z <p>Wouldn't you just add an initial record via an upgrade SQL when rolling out the change?</p> http://stackoverflow.com/questions/898529/populate-envers-revision-tables-with-existing-data-from-hibernate-entities/1130123#1130123 1 Answer by Gregory Mostizky for Populate envers revision tables with existing data from Hibernate Entities Gregory Mostizky 2009-07-15T08:30:50Z 2009-07-15T08:30:50Z <p>Take a look at <a href="http://www.jboss.org/files/envers/docs/index.html#revisionlog" rel="nofollow">http://www.jboss.org/files/envers/docs/index.html#revisionlog</a></p> <p>Basically you can define your own 'revision type' using @RevisionEntity annotation, and then implement a RevisionListener interface to insert your additional audit data, like current user and high level operation. Usually those are pulled from ThreadLocal context.</p>