0
votes
1answer
56 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 could solve myself... …
2
votes
4answers
609 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 the regular …
0
votes
0answers
28 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 entity ie entityB …
2
votes
1answer
161 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, and after a few …
1
vote
1answer
335 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 only outputs SQL for …
0
votes
2answers
335 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 ant task tweaked so …
5
votes
2answers
365 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 aren’t populated with …
0
votes
0answers
49 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 that is updated by to …
0
votes
4answers
625 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 I needed, but now I …
0
votes
4answers
287 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 …
