Tagged Questions
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
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
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 ...