Remove remark about AbstractAuditable.

This class only exists in Spring Data JPA, not in Commons.

Closes #2437
This commit is contained in:
Michael Simons
2021-08-20 10:18:20 +02:00
committed by Mark Paluch
parent b47069ea96
commit af033a0ead

View File

@@ -64,8 +64,6 @@ class AuditMetadata {
=== Interface-based Auditing Metadata
In case you do not want to use annotations to define auditing metadata, you can let your domain class implement the `Auditable` interface. It exposes setter methods for all of the auditing properties.
There is also a convenience base class, `AbstractAuditable`, which you can extend to avoid the need to manually implement the interface methods. Doing so increases the coupling of your domain classes to Spring Data, which might be something you want to avoid. Usually, the annotation-based way of defining auditing metadata is preferred as it is less invasive and more flexible.
[[auditing.auditor-aware]]
=== `AuditorAware`