Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been looking at Hibernate Envers for entity auditing. I'm using EclipseLink but I'd like something similar.

I've seen some implementations that involve creating a SessionCustomizer to handle some of the persistence of auditing data. I'd really like something like Hibernate where I can simply annotate the entity and have the same effect.

share|improve this question

1 Answer

up vote 2 down vote accepted

Unfortunately, EclipseLink doesn't have a feature which covers auditing out-of-the-box.

We use a SessionEventListener to intercept a flush or commit and use the calculated changeset for inserting the auditing data into audit tables.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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