Hibernate Envers (http://www.jboss.org/envers) is a extension to the Hibernate framework which enables auditing and versioning of persistent objects.
0
votes
0answers
19 views
(play 1.2.5-java) Hibernate Envers ValidityAuditStrategy configuration seems ignored
I'm currently working on an application using Play Framework 1.2.5 and Hibernate-envers 3.6.10-Final.
This application is suffering from very low performances due to the Default Audit Stretagy used ...
0
votes
1answer
20 views
Integrating nHibernate Envers _AUD tables original row
I am trying to integrate Envers in an existing nHibernate Database.
I need the default or the original AUD values in the respective *_AUD tables.
i.e initial value, else when the first time the user ...
0
votes
0answers
28 views
Auditing @ElementCollection/@Embeddable with hibernate-envers
I'm trying to audit a collection of @Embeddable objects using hibernate-envers.
According to https://hibernate.atlassian.net/browse/HHH-6613 support for auditing @ElementCollection was added. This ...
0
votes
0answers
35 views
nhibernate envers extending revinfo
I am trying to extend the default revinfo class... but it's not working.... below is the class I have defined...
[Serializable]
[RevisionEntity]
public class EnversAuditInfo
{
[RevisionNumber]
...
0
votes
2answers
40 views
Hibernate envers exception
I am trying to use JBoss envers (4.2.0.FINAL) annotations on my project but I failed due to an Enum auditing problem,
My entity code is
@Entity
@Audited
@DiscriminatorValue("CREDIT")
...
0
votes
0answers
48 views
Hibernate Audit log showing Entity ID as 0, for CREATE/INSERT audit logs
I have an Class:
@Entity
@Table(name = "XX_code", schema = "YYYY")
@Audited
public class XXCode {
@NotEmpty(message = "XX.name.required")
@NotBlank(message = "XX.name.required")
@Length(max = 40, ...
1
vote
1answer
109 views
Hibernate/Envers unable to read the mapped by attribute
I am unable to implement many-to-many relation using join table (http://stackoverflow.com/a/7603036 & ...
1
vote
1answer
114 views
Windsor 'Scope cache was already disposed' within Envers custom Revision Listener
Update: I think is down to a Windsor configuration, does any one have any idea as to what I have not configured correctly with Windsor?
I am currently using Envers within a C# WebApi project. ...
0
votes
1answer
91 views
Auditing user using NHibernate Envers fluentconfiguration
I am trying to use NHibernate Envers to log an additional field "user". I have followed several code examples that seem to vary a bit when it comes to syntax, probably because some of them are a bit ...
0
votes
1answer
34 views
Retrieve audited entities name, old value and new value of the given revision
I am using envers to audit a User class and it saving all modified data in DB with rev number. Now, i need to recover all edited entities name, old value and new value by passing revision number as ...
2
votes
1answer
101 views
Can i use only one table for all hibernate envers auditing?
i recently found the beautiful library that is called "hibernate envers", it's such a great and easy way to have an audit log, it solved one of my biggest problem while working on a play ...
1
vote
1answer
105 views
nHibernate Envers MOD
I am new to nHibernate Envers, I am Tracking entity changes at property level, which creates columns with the properties names with a suffix of _MOD by default, there is a option of changing this ...
0
votes
1answer
58 views
Envers - Showing audit data with relationships
I added @Audited in my entitys;
I created my listener to add the user ID to revinfo;
I can filter audited data with user id, entity class, min and max date, using:
public List buscar(Class clazz, ...
0
votes
0answers
170 views
Envers not inserting records in version tables with JTA Atomikos
I am using Spring 3.1, Spring data jpa 1.2 with Hibernate 3.5.1 and envers 3.5.1. The issue is when using envers my _AUD table is getting created but the data is not inserted in the AUD tables. I ...
0
votes
1answer
128 views
Envers inserting null Id in bidirectional OneToMany with JoinTable
I'm using Hibernate and Envers 3.6.10 over Postgresql. I've mapped a OneToMany bidirectional relation using a JoinTable between entities A and B as follows.
Class A:
@Entity
@Audited
public class A ...
0
votes
1answer
52 views
Can I still use AuditReader when I have my own listeners in Envers?
I am trying to do conditional auditing with Envers so, according to documentation, I turned off default Envers event listeners and instead registered my own subclasses.
Now I'm trying to read audit ...
0
votes
0answers
102 views
hibernate envers and JSF configuration using jar-file tag
I am trying to configure Hibernate envers in a JSF application that uses another jar file to hold entity classes (mapping classes). The web application references a jar-file which keeps entity classes ...
0
votes
0answers
37 views
Envers pulling back lots of data
I am currently auditing my db with envers and it's doing a great job. I have parsed various entities and show results in the UI which also works well.
I have now reached a problem with the ...
2
votes
2answers
71 views
Adding Envers to an existing database
I have a Hibernate-based app in production, with a large database. I need to add auditing to two entities (two tables) in this application, and I've decided to go with Envers.
For every INSERT, ...
0
votes
1answer
93 views
Automatic audit table creation while initial schema creation
I am trying to use hibernate and envers and want to create initial data in the schema using following property:
<property name="hibernate.hbm2ddl.auto" value="create"/>
<property ...
0
votes
0answers
64 views
Audit object and its relations
What strategies can I use to audit a complex object? My context is that we shall build an issue-management-application and we have demands both on audit-trails but also easy ways for the user to ...
0
votes
1answer
93 views
nhibernate envers and optimistic concurrency
I am using nhibernate envers for auditing. creating a corrosponding audit table for each table in database.
Envers needs two fields mandatory: one version and another timestamp.
but version field is ...
1
vote
2answers
64 views
nhibernate validator and envers together
I am trying to use both nhibernate validator and nhibernate envers together in the same project.... but i am getting the null expection:
If i iniitliaze the validator later, i get the error:
Mesage: ...
0
votes
1answer
91 views
Is it possible to prevent Hibernate Envers from storing entity in audit table unless it is modified
I need to maintain history of modifications to data in my database. The modifications will not be very common so it seems OK to store the entire row instead of just diffs which would be more efficient ...
0
votes
1answer
73 views
What is the disadvantage of not auditing OneToMany relations?
I am using Hibernate Envers to log all changes to the database. I noticed that when I added an entity which had a ManyToOne relation with another entity a revision was made on the one Side entity as ...
1
vote
1answer
149 views
Envers, for a ManyToOne with JoinColumn, is auditing the wrong column
When auditing a foreign key, Envers seems to be ignoring the JoinColumn annotation.
E.g. I have a simple class like this:
@Audited
@Entity
public class Address {
@Id
@GeneratedValue
...
0
votes
0answers
56 views
strategy for archiving obsolete rows using Hibernate /MySQL
In our web application we have a MySQL table that stores details of notifications that are sent to users.
These notifications, once read by the user, are flagged as 'dismissed' and unlikely to be ...
0
votes
1answer
70 views
How to force a field update in an audited entity with envers?
I'm using Envers in order to know the last fields updates of my entities.
Sometimes I need to force (in the audit table) an update on a field (new revision: new date and boolean at true for this ...
0
votes
0answers
52 views
Hibernate Envers and dynamic component
I am using Hibernate Envers v 1.2.3 for compatibility with Hibernate 3.3, that we are using in our software.
However, a null pointer exception is raised at startup, and this comes from the ...
0
votes
2answers
135 views
NHibernate Envers - how to audit revisions on a separate database?
I'm using Nhibernate Envers and I want Envers to save audit info on a separate database to keep things cleaner/more maintainable.
I'm using this fluent configuration:
var enversCfg = new ...
0
votes
1answer
130 views
NHibernate.Envers entity properties change log
I want to implement something like change log with NHibernate.Envers. How I can achieve this in most elegant way? Suppose we have blog (name) and post (body, createdat) entities. Blog has many posts. ...
1
vote
1answer
117 views
Audit ManyToMany Relationships using Hibernate Envers
I'm using Hibernate Envers in order to audit my entities. But I have a problem. I want to audit an Entity that have a ManyToMany relationship. I found that exists an @AuditJoinTable but I don't have ...
1
vote
1answer
122 views
Getting modified properties by revision
I am using Hibernate Envers to audit my entities and properties (org.hibernate.envers.global_with_modified_flag=true). This seems to work, but now I'd like to get all properties of a specific entity ...
2
votes
1answer
80 views
How to swap unique, ordering column entries with NHibernate and Envers?
I am working with NHibernate for a while now and finally hit a problem, I can neither find an answer, nor anyone else how seemed to have this problem.
The environment is NHibernate 3.3.1.4000 and ...
0
votes
1answer
86 views
Envers @ManyToMany subquery
I have an audited entity A. Entity A holds field 'name' and a collection of entities B (annotated as Many-to-many relationship). I created an instance of A, defined name, collection of entities B and ...
1
vote
1answer
127 views
How to access FacesContext in Hibernate Envers without Seam?
We're implementing Envers in our project for database auditing, and have run into a snag. We don't know how to determine what user is making the change. All the examples I can find use Seam and their ...
0
votes
0answers
127 views
Is there a way to disable auditing for a specific column?
I've got a table, tblFiles, in which I store files attached to certain entities in my system. Among other things, this table contains columns for FileName (the name of the file) and FileData (the ...
1
vote
3answers
242 views
Audit and data history in java
I have a set of domain objects and its related tables for application's configurations. Authenticated users can change these domain objects data thru a presentation layer. These domain objects have ...
0
votes
1answer
145 views
Envers not Saving Audits-Nhibernate
I have the following envers configuration:
hibernateCfg.SetEnversProperty(ConfigurationKey.DefaultSchema, "audit");
hibernateCfg.SetEnversProperty(ConfigurationKey.RevisionFieldName, ...
0
votes
0answers
220 views
Conditional Envers Auditing
I have a requirement where I want to audit records only on change of Status field. I've followed documentation chapter tutorial "15.8. Conditional auditing".
Step 1: Turn off automatic Envers event ...
0
votes
2answers
313 views
Hibernate Envers How to record additional audit data such as table name being audited
I have implemented a solution of Hibernate Envers.
I am extending RevisionLister by creating my own class to store the system username:
import org.hibernate.envers.RevisionListener;
public ...
0
votes
0answers
45 views
Envers creates varchar columns as 255 even when the src column is larger
I am using Hibernate Envers to audit my tables. I have a problem where I have a varchar(1024) in a table but when the audit table is created it is truncated down to 255
If this is my source table
...
1
vote
3answers
342 views
Hibernate Envers - Doesn't write audit records for createQuery(…).executeUpdate(), only .persist() and .merge()
I have 3 ways things get written to the DB
public void create(T object) {
entityManager.persist(object);
}
public void update(T object) {
object = entityManager.merge(object);
}
public int ...
0
votes
1answer
181 views
Hibernate envers spring web app how to log username
I am using hiberbate 3.5 and spring 3.x
I have envers working and the ... _aud and revinfo record are now being written.
I now need to add the username to the audit record I'm guessing revinfo is ...
3
votes
1answer
603 views
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 audits the changes that are made to each object. This works really well!
I now want to show ...
0
votes
1answer
246 views
Hibernate Envers with JBoss, Spring and Maven - Doesn't write audit record
I am trying to do a Hibernate Envers implementation in conjuction with Spring, JBoss and Maven.
I have the following:
spring.version: 3.1.0.RELEASE
hibernate.version: 3.5.0-Final
log4j.version: ...
0
votes
1answer
91 views
Is it possible to use Envers 4 with Hibernate 3?
Currently, we are using the version 3.6.9.Final for all our Hibernate libraries, including Hibernate Envers for our audit revisions.
We want to move to the 4.1.8.Final version (to use the ...
0
votes
0answers
150 views
hibernate envers and ordered lists
I've been using Hibernate Envers 3.6 quite happily for some time.
However I've come across an issue with ordered lists which seems to cause Envers to fail.
We have a class A with a List of B, ...
1
vote
0answers
146 views
Audit java entities without Hibernate Envers
I'm facing a problem. I would like to audit my java entities but i use a custom e-commerce solution that i extend and i can't annoted his default entities with Envers.
Do you know an other project ...
0
votes
1answer
55 views
'elements(a,b,c) in elements(foo.elements)' in hql?
I have an entity as follows:
public class Foo {
private List<String> bars;
@ElementCollection(fetch=FetchType.LAZY)
@CollectionTable(name="T_BARS", joinColumns=@JoinColumn(name = ...
