Skip to content
Advertisement

How do I get a Hibernate Interceptor to pick up certain superclass fields?

I have some entities. For example

JavaScript

They extend the Auditable class

JavaScript

And I have an interceptor

JavaScript

I can create entities

JavaScript

and the audit trail looks good AUDIT_ID 120385 AUDIT_ACTION Saved
AUDIT_DETAIL SecurityUserPublisher@678541a[contactId=8721,publisherId=360] AUDIT_CREATEDTS 2019-04-04 13:52:57 AUDIT_ENTITYPK contactId: 8721 publisherId: 360 AUDIT_ENTITYNAME SecurityUserPublisher AUDIT_CONTACTID 7341

But when I try to delete

JavaScript

the audit trail contact id is null, even though I expressly set it before calling the remove. AUDIT_ID 120386 AUDIT_ACTION Deleted
AUDIT_DETAIL SecurityUserPublisher@1d184bc8[contactId=8721,publisherId=360] AUDIT_CREATEDTS 2019-04-04 13:53:35 AUDIT_ENTITYPK contactId: 8721 publisherId: 360 AUDIT_ENTITYNAME SecurityUserPublisher
AUDIT_CONTACTID null

So, how do I get the onDelete to show the contactId in the Audit table?

Advertisement

Answer

Use @MappedSuperclass annotation on Auditable class. Otherwise Hibernate ignores super class fields and fields of Auditable class are not saved into DB.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement