vote up 5 vote down star
2

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.

flag

50% accept rate
how are you getting the auditing to work? I can't even get that far :( – Jason S Jun 4 at 16:07
1  
It's really simple, just read the fairly short manual: jboss.org/files/envers/docs/index.html – qbn Jun 5 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 at 22:48

2 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

Wouldn't you just add an initial record via an upgrade SQL when rolling out the change?

link|flag

Your Answer

Get an OpenID
or

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