Hibernate Envers Auditing (spring.jpa.hibernate.ddl-auto=create)
Description: Auditing is useful for maintaining history records. This can later help us in tracking user activities.
Key points:
- each entity that should be audited should be annotated with
@Audited - optionally, annotate entities with
@AuditTableto rename the table used for auditing - rely on
ValidityAuditStrategyfor fast database reads, but slower writes (slower than the defaultDefaultAuditStrategy)

