Envers @OneToMany audit on CREATE(0) but not on DELETE(2)
问题 I've looked a quite a few similar issues like: http://community.jboss.org/message/580407#580407 but haven't found a solution yet. An Activity has many Occurences, when an occurence is created the activity_occurence_AUD table is updated correctly with a 0 (create) revision. However when an occurance is removed the activity_occurence_AUD table is not populated with a 2 (delete) revision. Activity Entity: @Entity @Table(name = "activity") @Audited public class Activity implements Serializable {