I'm starting a new project using spring 3.1, hibernate 4 and there is a requirement to track any activity on the application. activity tracking example who changed what?
from what to what?
and at which time?
i've read an introductory tutorial on hibernate anvers. and to me it seems is more of data history than activity tracking unless i didn't get it at all.
is there a way to add custom field to that *_aud table to insert more user defined table. like date_created
, last_modified
, created_by
, updated_by
with its own databefore
and dataafter
kinda of fields.so basically i would like to add createdby
, updatedby
to anvers created table
Is there any way to do that. if yes, please point me to the right resource.
Thanks for reading .