### Annotating Entity for Auditing Source: https://hibernate.org/orm/envers Annotate entity fields with @Audited to specify which fields should be tracked by Envers. ```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.