What is the order of properties when calling getDirtyProperties from PostUpdateEvent

To get the property names use this:

String[] properties = event.getPersister().getPropertyNames();

Then match the array indexes and you’ll know what property has changed.

1 Like