I want a system identical to Audit Logging Plugin (http://grails.org/plugin/audit-logging) but for Java.
Hibernate envers allows to store all the data for each release. It does not know what data is changed. I would only store the changed values. Store all values is useless in my case.
here is what I will wish: A table with :
date_event, class_name, old_value, new_value, actor, persited_object_id
2014-12-18; person; tony; John; admin; 5
To summarize, I would like to answer the question: who ? changed what ? when ?
Thx
In Hibernate 3.x
You have a option called Listeners. That you can configure Post-Commit. You can receive add,modified and deleted events. In added events you can receive added object , In Updated Event you can receive updated prop names , old & new values. In Deleted Event you can receive deleted objects.