Tagged Questions

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 …
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 …
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 …
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
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 …
0
votes
4answers
547 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
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 …