### Annotating Entity for Auditing Source: https://hibernate.org/orm/envers Use the @Audited annotation to specify which fields of an entity should be audited by Envers. This annotation can be applied at the entity or field level. ```java @Entity public class Person { @Id @GeneratedValue private Integer id; @Audited private String name; @Audited private String surname; @Audited @ManyToOne private Address address; } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.