
Envers: Easy Entity Auditing
@Audited. For each audited entity, a table will be created, which will hold the history of changes made to the entity. You can then retrieve and query historical data without much effort.
Similarly to Subversion, Envers has a concept of revisions. Basically, one transaction is one revision (unless the transaction didn't modify any audited entities). As the revisions are global, having a revision number, you can query for various entities at that revision, retrieving a (partial) view of the database at that revision. You can find a revision number having a date, and the other way round, you can get the date at which a revision was commited.
Envers is a Hibernate core module and works with Hibernate and Hibernate Entity Manager (see hibernate.org). For the auditing to work properly, the entities must have immutable unique identifiers (primary keys). You can use Envers wherever Hibernate works: standalone, inside JBoss AS, with JBoss Seam or Spring.
Some of the features:
- auditing of all mappings defined by the JPA specification
- auditing of some Hibernate mappings, which extend JPA, like custom types and collections/maps of "simple" types (Strings, Integers, etc.) (see here for one exception)
- logging data for each revision using a "revision entity"
- querying historical data
For a quick tutorial on how to use Envers, see the Quick Start page.
On the downloads page, you'll find the jar with the library, the source code, as well as an Envers+Seam demo: a simple wiki application and bi-temporal versioning demo.
You can also try a console demo, which is a simple app where you can create, modify and view versions of two simple entities (Person and Address), and modify a one-to-many relation between them. By default it uses hsqldb, but you can overwrite the persistence.xml and check how it works with your database, see the structure of the generated tables etc.
Blog of Adam Warski
Java and JBoss related stuff- Ruby on Rails + CDI? Why not! Enter TorqueBox + Weld
- Jul 27, 2010 8:07 AM by Adam Warski
- Initial valid-time support in Envers
- Jul 2, 2010 8:12 AM by Adam Warski
- NEnvers
- Jul 1, 2010 1:51 PM by Adam Warski
- Object Services in Scala
- Jun 21, 2010 12:39 PM by Adam Warski
- Object Services, or bridging anemic and rich models, in CDI/Weld
- May 27, 2010 5:43 AM by Adam Warski