The hibernate-envers tag has no wiki summary.
12
votes
3answers
739 views
How to manage object revisions in Grails?
I need to implement a revision system for articles in my grails web app. After searching grails forum, stackoverflow, grails plugins and googling internet, I have ended up with 3 options:
Option 1 - ...
9
votes
1answer
537 views
Hibernate Envers: Initializing Envers Proxies
In Hibernate Envers, all related collections of an entity are loaded lazy, regardless of what fetch type is set. So when auditquerying for entity that has a collection of other entities (both audited, ...
7
votes
3answers
1k 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 ...
4
votes
1answer
251 views
Hibernate Envers Revert data to a version
We are using Hibernate envers to store historical revisions of the data, there is a requirement to revert data to a certain revision. As we are using the Version column to use the optimistic locking ...
3
votes
2answers
284 views
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 to BusinessObjectType:
@Entity
@Table( name = "ID_IDENTITY" )
...
3
votes
1answer
239 views
Configure an Envers RevisionListener via DI
To add an audit trail to our application we decided to use NHibernate.Envers. To allow app specific tracking of revisions, the DefaultRevisionEntity was extended with user specific data.
public ...
3
votes
1answer
211 views
How does Envers deal with schema changes?
I am thinking about switching from a self-implemented versioning-solution to Hibernate Envers, but I am not quite sure yet. I have read a lot about it, but I am concerned about schema changes and how ...
3
votes
1answer
217 views
Hibernate Envers for Doctrine?
Doctrine 1.x and 2 both offer some kind of Versionable support in the form of a separate auditing table that tracks changes over time. However, the versions appear to be intended for per-row use (ie, ...
3
votes
1answer
546 views
Hibernate Envers - traversing the relations
In my application, I have a several audited entity classes for example the following.
It contains multiple HAS-IS relations to other entities with various hibernate annotations.
@Entity
@Audited
...
2
votes
1answer
121 views
Envers with Hibernate Interceptors, onDelete
I'm trying to implement a simple Envers + interceptor based approach to audit my Hibernate entities. For this, as per the typical approach, there's a BaseEntity with all the audit properties:
...
2
votes
2answers
240 views
Envers custom revision listener
I am using Hibernate Envers in a Tomcat environment. It works fine. I do however need to be able to add the username of the user that changed the data that is to be audited. This can be done by ...
2
votes
1answer
218 views
Missing properties in Envers auditing tables
I am using envers to audit my ParameterToValue entity. Its properties "containerId", "containerType", "parameterId" which do appear as columns in a mapped DB table "values_for_params" (a regular ...
2
votes
2answers
299 views
Finding the recently deleted entities using Hibernate envers
So my problem is that I need to find all the recently deleted entities of a particular class, that is the entities which have been deleted since a particular timestamp. Specifically, I want to find ...
2
votes
2answers
548 views
hibernate envers: merge & saveOrUpdate
I am working on an spring-hibernate-envers application. After lot of googling things are finally working for me but i have still got couple of questions.
Earlier i was using saveOrUpdate for
...
2
votes
1answer
219 views
forRevisionsOfEntity is slow
I'm doing a query for all revisions of a class that are greater than a timestamp using:
AuditReaderFactory
.get(emf.createEntityManager())
.createQuery().forRevisionsOfEntity(clazz, false, ...
2
votes
1answer
658 views
Hibernate - Envers -> auditing / versioning of an attribute, but only if the value changed
I have a problem with Hibernate - Envers. I have a domain object with only one audited attribute status which can be one of the numbers 0,1,2,3,4,5.
@Entity
public class Item {
...
@Audited
...
2
votes
1answer
1k views
Hibernate Interceptors or Events for Audit Trail?
I record a history of all changes to some entities and am about to implement a mechanism similar to Envers to take care of this automatically. My question is whether to use Hibernate interceptors or ...
2
votes
1answer
470 views
Hibernate - Envers - Multiple Audit targets
I am already using Hibernate Envers to audit entities that are updated by a user through the UI; however, I also have asynchronous jobs running in the background and would like to audit those as well ...
2
votes
1answer
258 views
Storage of auditable fields per entity
I guess it's a good practice to capture auditable fields to track what happened to a particular entity (say createdBy, creationDate, modifiedBy, modifiedDate)
I am assuming if an object is never ...
2
votes
2answers
2k 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 ...
2
votes
2answers
2k 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 ...
2
votes
3answers
5k 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 ...
1
vote
1answer
108 views
How to log current user with NHibernate Envers
I've looked around how to log the username of the current user in the revision entity table of Envers. However, there's little information and the information I did manage to find wasn't that helpful.
...
1
vote
1answer
154 views
nullpointerexception during Hibernate Envers find method
I have not been using envers for very long, and i have hit a problem i just cant seem to find the answer to anywhere. I have tried googling the stack trace but to no avail, so i must be missing ...
1
vote
0answers
168 views
Get revision numbers of root entity and their entities in collections
At the moment I am experimenting with the envers library in our application for integration. Whenever I do an getRevisions I only get the revisions for the root entity.
However I expect Envers to be ...
1
vote
1answer
187 views
Hibernate ENVERS Classloading issue
I am trying to integrate Hibernate Envers in an already developed application.
I ship the Hibernate Envers JAR inside an EAR package, and it throws an ugly exception regarding to class loader and ...
1
vote
1answer
171 views
Passing data to envers revision listener
I'm trying to store revision comments using Enver's RevisionEntity so that it's in the same table as the revision ID and timestamp and is stored only once even if multiple entities are changed.
My ...
1
vote
1answer
248 views
Get complete Envers revisions where a particular object is affected
The way revision data is stored each object affected by a revision gets a separate record in the _AUD table. So when I search for revisions affecting object A, I will get back the entry where revision ...
1
vote
0answers
179 views
Envers configuration with hibernate.cfg.xml
I am trying to use Envers to audit the updates/inserts into my tables. I have created audit tables with extension _AUDIT in the DB.
But when I actually run the application, I dont see any entries in ...
1
vote
1answer
154 views
Shiro, Hibernate and Envers
I've got shiro implemented and it's working quite well. We're now trying to implement envers to do audit logging of our entities in hibernate and that works as well. One problem is we're trying to ...
1
vote
1answer
626 views
Whats 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 ...
1
vote
2answers
277 views
How to force Hibernate-Envers to use quotes around fields name?
I have a table with properties defined like this :
@Column(name="\"SERIAL#\"")
When Hibernate inserts data, everything works fine.
But it comes to Hibernate-Envers(HE), HE forgets to surround the ...
1
vote
1answer
485 views
Data not getting inserted into audit tables in Spring-Hibernate-envers webapp
I am working on a Spring and hibernate web app. I have to use envers for auditing.
But when I am running the application only audit tables are created but no data is inserted to the audit tables.
...
1
vote
0answers
251 views
org.hibernate.MappingException: Type not supported ENVERs
I just started getting this error when I introduced a composite primary key. Any ideal as to why? I have been unsuccessful in trying to figure this out.
Caused by: org.hibernate.MappingException: ...
1
vote
1answer
1k views
Hibernate Envers with Spring using HibernateTemplate
I'm trying to setup Envers in a Spring environment. Everything works fine, when I retrieve a session manually from the SessionFactory and put everything inside a Transaction:
Session session = ...
1
vote
1answer
570 views
@Audited annotation in Hibernate hbm file
I am using Hibernate as my orm in my application.
Now I want to integrate it with Envers. At present I am generating entity using hbm files. In that case how can I mention in hbm file that generate ...
1
vote
1answer
320 views
In Hibernate Envers is it possible to query ALL entities for a given revision?
I'm looking at Hibernate Envers to solve two problems for me. First is auditing, fine. Second is the ability to roll-back a change made in a revision. This will be implemented by
Finding all the ...
1
vote
1answer
283 views
JBoss envers and huge audit tables
All,
I am auditing my JEE application with JBoss Evers and the nature of my application causes the audit table to grow very fast. The historic data is queried infrequently and access time is not ...
1
vote
1answer
473 views
Unable to add custom logging data in REVINFO in envers
I am trying to use Envers for implementing Audit trails. It's creating the audit table Person_AUD and entering the audit data as well. But, when I try to add custom fields that are updated by Envers, ...
1
vote
4answers
2k views
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 by Hibernate Envers. How can I load the previous version of a User entity?
0
votes
0answers
5 views
Hibernate Envers revision info (changes list)
I want to add in my project a list of the revision changes (on click in info icon) like:
Revision X
- added fieldA entry
- modified fieladB from B to BB
- removed fieldC entry
...
Which is the best ...
0
votes
2answers
24 views
Envers, PostgreSQL and TINYINT
We are using Envers with both Oracle and MySQL without any problem. We are now trying PostgreSQL but we have the problem that the audit tables are created with a column REVTYPE of type TINYINT.
...
0
votes
0answers
58 views
Having difficulty using Envers to audit a many-to-many relation
I'm wanting to use Envers to audit a many-to-many relation with an embedded component but I'm having trouble with a MappingException saying the the ComponentType is not supported. This is relevant ...
0
votes
1answer
26 views
EnversHibernateToolTask in NetBean build file issue
I'm trying to incorporate hibernate schema generator for Envers.
I've add this target:
<target name="schemaexport"
description="Exports a generated schema to DB and file">
...
0
votes
0answers
132 views
Sharp Architecture + NHibernate Envers
Currently we are using Sharp Architecture 1.9.6.
And we need to audit our domain classes.
It seems comfortably to use NHibernate Envers for this task.
But I couldn't configure Sharp Architecture to ...
0
votes
0answers
98 views
hibernate-envers RevisionListener spring integration as spring bean
I need to do some database processing in revision listener of hibernate-envers. For that I need inejction capabilities of Spring Framework. How can this be implemented? Here is the code representing ...
0
votes
1answer
260 views
Creating Envers custom revision entity
I'm trying to setup audit for our project.
I started from the default configuration which works fine.
The next step is to store the user which has made changes.
Following the manual I created custom ...
0
votes
1answer
130 views
Envers query returns a lazy result instead of an eager one
I have an Envers query that returns a lazy result although the field is defined in hibernate-mapping with lazy="false".
I have looked it up at the Hibernate-Envers forums and didn't find any useful ...
0
votes
1answer
167 views
jboss 7 (envers 4) Unable to load class org.hibernate.envers.event.AuditEventListener
I port from hibernate Envers 3.6 to Envers 4.0. This new version doesn't have AuditEventListener. Old version requires: listeners
I can't find how to configure the new version.
0
votes
0answers
64 views
Envers AuditQuery - filter using AND / OR
how can I filter AuditQuery using AND / OR?
I can simple do (name = 'John' and address is not null):
query.add(AuditEntity.property("name").eq("John"));
...