I am using Hibernate Envers for my Auditing. Post-update and post-insert works fine.
I have a requirement where I need to audit only the updated columns in the audit table (e.g. employee_aud). By default envers will insert the entire persisted entity in to the audit table.
I need to insert values only which are updated.
Is there any possibility to do this ?
Thanks in advance.
Cheers !