Tagged Questions

0
votes
4answers
283 views

Get the entity previous version in Hibernate Envers

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 …