up vote 7 down vote favorite
2
share [g+] share [fb]

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.

link|improve this question

80% accept rate
how are you getting the auditing to work? I can't even get that far :( – Jason S Jun 4 '09 at 16:07
1  
It's really simple, just read the fairly short manual: jboss.org/files/envers/docs/index.html – danieljimenez Jun 5 '09 at 5:29
I was wondering about this, but I need audit information about the environment. Which user and "how" they did the change - which high-level user operation they were doing that triggered the change. This is important to be able to see explicit changes vs. "side effect" changes. Do you know if envers handles this need? – Pat Jun 15 '09 at 22:48
feedback

3 Answers

up vote 2 down vote accepted

You don't need to.
AuditQuery allows you to get both RevisionEntity and data revision by :

AuditQuery query = getAuditReader().createQuery()
                .forRevisionsOfEntity(YourAuditedEntity.class, false, false);

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.

link|improve this answer
Could you expand on this further? Are you saying that if the revision entity is null then you should just use the first element of the array returned by the AuditQuery? – Rezler Jul 26 '11 at 15:50
feedback

Take a look at http://www.jboss.org/files/envers/docs/index.html#revisionlog

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.

link|improve this answer
feedback

We populated the initial data by running a series of raw SQL queries to simulate "inserting" all the existing entities as if they had just been created at the same time. For example:

insert into REVINFO(REV,REVTSTMP) values (1,1322687394907); 
-- this is the initial revision, with an arbitrary timestamp

insert into item_AUD(REV,REVTYPE,id,col1,col1) select 1,0,id,col1,col2 from item; 
-- this copies the relevant row data from the entity table to the audit table

Note that the REVTYPE value is 0 to indicate an insert (as opposed to a modification).

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.