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:
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 implem
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 cal
I port from hibernate Envers 3.6 to Envers 4.0. This new version doesn\'t have AuditEventListener.开发者_如何学运维 Old version requires: listeners
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 regul
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 som
I\'m using Hibernate Envers for auditing. It works fine. However, I\'m try to get the rev id right after modifying the data. I have CustomRevisionEntity as below:
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
I am trying to use Envers to audit the updates/inserts into my tables. I have created audit tables with ext开发者_如何学运维ension _AUDIT in the DB.
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 g