0
votes
1answer
37 views
NullPointerException at org.hibernate.envers.event.AuditEventListener.generateBidirectionalCollectionChangeWorkUnits(…)
I'm using Envers to audit different fields of my entities. The framework works in general but it seems to have problems with some kinds of entity mapping. All former problems I cou …
0
votes
0answers
18 views
Hibernate Envers throws AuditException
I am using Envers to get related entity (say entityB) for a given entity (say entityA) for a given version of enityA. I am comparing revision number of entityA with the related ent …
2
votes
1answer
98 views
Does HibernateTemplate work with Envers? If so, how?
I am trying to use Envers on a project that also uses Hibernate and Spring - and I appreciate a lot the code reduction offered by HibernateTemplate.
I configured Envers under JPA, …
0
votes
0answers
63 views
GUI for history recorded by Envers
Some time ago we began to record all changes of our EJB3 entities with the help of Envers framework.
And now the question is - what GUI can we suggest to users to view this histor …
0
votes
1answer
74 views
Can’t get Envers to work
Envers looks easy. Just add some hibernate properties in your persistence.xml (eventlisteners), and annotate the entities you want to audit.
I am testing this on an application us …
0
votes
0answers
44 views
Unable to add custom logging data in REVINFO in envers
I am trying to use Envers for implementing Audit trails. Its creating the audit table Person_AUD and entering the audit data as well. But, when i am trying to add custom fields tha …
1
vote
1answer
310 views
difficulties getting a simple envers example to work: problem #34
I'm trying to get a simple envers example to work. I have the Java code working (apparently), and I finally got the org.hibernate.tool.ant.EnversHibernateToolTask to work, but it o …
0
votes
4answers
548 views
what the heck is a JPA configuration?
I'm going nuts trying to get a simple Envers example to work. I'm stuck on the org.hibernate.tool.ant.EnversHibernateToolTask — it looks like I finally got all the jar files …
0
votes
2answers
309 views
stumbling blocks galore while trying to run org.hibernate.tool.ant.EnversHibernateToolTask
I'm trying to run org.hibernate.tool.ant.EnversHibernateToolTask as suggested in the rather terse guide to Envers (2nd line of table, Documentation has a link to a PDF). Here's my …
5
votes
2answers
345 views
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 is a different issue because the revision tables are …
2
votes
4answers
503 views
getting started with envers + hibernate (simple and COMPLETE example)
I have Hibernate working and would like to try adding Envers audit/revision functionality but can't seem to figure out what is required. (my example compiles and runs OK and I get …
0
votes
4answers
264 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 thi …
