How to Implement Conditional Auditing with Hibernate Envers

How to Implement Conditional Auditing with Hibernate Envers

Hibernate Envers automatically integrates with Hibernate ORM and provides a powerful and easy to use solution to write an audit log. As I described in a previous post, you just need to add Envers to your classpath and annotate your entities with @Audited. It will then document all insert, update and delete operations and you…