| Hello, with HHH-13051 Closed the AuditStrategy became more flexible and extensible. But the configuration, which implementation of AuditStrategy to use, is a global one. Wouldn't it be cool to use a custom AuditStrategy for one single audited Entity? Something like this: @Audited(strategy = "com.company.CustomAuditStrategy") @Entity public class MyEntity {} Each other audited Entity uses the standard configuration from org.hibernate.envers.audit_strategy Regards, Rokko |