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:
BaseEntity{
createdOn;
createdBy;
updatedOn;
updatedBy;
}
In the AuditInterceptor, I have overridden onFlushDirty and onSave methods to manipulate the above properties depending upon whether it's an entity Save or Update. Everything works as expected for Save and Update.
The issue that I'm facing is: I need a way to be able to manipulate the above properties for Delete operations as well. Overriding onDelete does give me a handle to the state[] array, but modifying it doesn't reflect in the _AUD (audit) tables. In a nutshell: I want to be able to audit delete operations in the audit tables as well.
Is there a workaround for this, or am I missing something?