Top "Hibernate-envers" questions

Hibernate Envers is a core module of the Hibernate framework that enables simple entity auditing and change tracking using annotations and simple configuration steps.

What's the difference between @NotAudited and RelationTargetAuditMode.NOT_AUDITED in Hibernate EnVers?

@NotAudited @Audited(targetAuditMode = RelationTargetAuditMode.NOT_AUDITED) @OneToMany(mappedBy = "booking") @OrderBy("bookingOrder") private List<CustomerBooking> customerBookingList = new LinkedList<…

java hibernate hibernate-envers
Hibernate Envers with Spring Boot - configuration

I'm trying to setup Hibernate Envers to work with my Spring Boot application. I've included the Envers dependency and added @…

spring hibernate jpa spring-boot hibernate-envers
How not to audit a join table and related entities using Hibernate Envers?

I use Hibernate Envers to audit my entities. I have one audited entity, Foo, which has a List<Bar&…

java hibernate hibernate-envers
Get previous version of entity in Hibernate Envers

I have an entity loaded by Hibernate (via EntityManager): User u = em.load(User.class, id) This class is audited …

java hibernate jboss hibernate-envers
Hibernate Envers and "Javassist Enhancement failed" Exception

We are using Hibernate Envers and have the following situation: A class BusinessObjectType and a class Identity with a reference …

hibernate hibernate-envers
Spring Data JPA and Spring Boot auditing with Hibernate Envers

I am using Spring Data JPA and Spring Boot for my project. I have Audit requirement for Objects(Create/Update/…

hibernate spring-boot spring-data-jpa hibernate-envers auditing
Hibernate Envers - Get Fields that have changed

I have a rather complicated DB structure that I am trying to audit. Currently I have Envers running and it …

java hibernate audit hibernate-envers
Populate envers revision tables with existing data from Hibernate Entities

I'm adding envers to an existing hibernate entities. Everything is working smoothly so far as far as auditing, however querying …

java hibernate hibernate-envers
Hibernate Envers - REVINFO table doesn't exist

I'm using Hibernate 4.3.6, and I tried making use of the Envers functionality by adding the @Audited annotation to one of …

hibernate hibernate-envers