We use Spring Data with die AuditEntityListener to update the change-user and the changedate. But for our migration (Spring Batch) of old data we need to set the create-user and the change-user manualy, but we cannot disable the functionality of the AuditEntityListener. We also use envers in some entities, so I can't implement the AuditEntityListener by myself.
Do I have to copy my entity-classes?
I have exactly the same problem, and this is how I ended up resolving it. I am using Spring Boot 3.2
The above entity is used like so:
With the above configuration, when I migrate old data that already have a
createdAt
and anupdatedAt
they are not overwritten. For new entities the auditing works as expected.