I have an entity loaded by Hibernate (via EntityManager)
User u = em.load(User.class, id)
This class is auditaded by Hibernate Envers. I want to load the previous version of this class. How can I do it?
Thanks
|
|
|
|
|
|
|
maybe this then (from AuditReader docs)
(I'm very new to this, not sure if I have all the syntax right, maybe the size()-1 should be size()-2?) |
||
|
|
|
|
From the docs:
|
||
|
|
|
I think it would be this:
|
||
|
|
|
|
Just wanted to update everyone that the newest version of envers (1.2.1.GA) has a shortcut method for getting the current revision. See AuditReader.getCurrentRevision(). |
||
|
|