Tagged Questions
Envers: Easy Entity Auditing for Hibernate
1
vote
1answer
77 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
197 views
What does eclipse do when you inspect variables (while debugging)
I have an instance of org.hibernate.envers.entities.mapper.relation.lazy.proxy.ListProxy that is causing some grief: whenever I programmatically try to access it I get a null pointer exception (ie ...
0
votes
0answers
23 views
envers multi level entity revision howto
User have n Contacts. A Contact can have a localized Comment (Comments are shared between Contacts). Java Beans:
@Audited
@Entity
public class User {
@OneToMany(fetch = FetchType.EAGER,
...
0
votes
1answer
49 views
Java monitor changes in database - Hibernate and envers
I'm writing a server side application that will monitor changes to a database, I plan to do this with Hibernate. I'd like to set up a listener so that if any changes are made to the data any ...
0
votes
0answers
91 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
1answer
88 views
Integration testing with Hibernate Envers
I'm trying to build some tests around some audited entities. My problem is that envers only audits on a transaction commit.
I need to create/edit some test objects, commit the transaction and then ...
0
votes
1answer
176 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 ...