Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

envers multi level entity revision howto

User have n Contacts. A Contact can have a localized Comment (Comments are shared between Contacts). Java Beans:

@Audited
@Entity
public class User {
    @OneToMany(fetch = FetchType.EAGER,
               cascade = CascadeType.ALL,
               orphanRemoval = true)
    Set<Context> contacts;
}

@Audited
@Entity
public class Contact {
    @ManyToOne(fetch = FetchType.EAGER,
               cascade = {
                          CascadeType.MERGE,
                          CascadeType.PERSIST,
                          CascadeType.REFRESH})
    Comment comment;
}

@Audited
@Entity
public class Comment {
    String de;
    String en;
    String fr;
}

If I change the german localization (Comment.de) of a contact (Contact.comment) then this will create a new revision but not for User. If I ask envers for User Revisions I will never see this "Level 2 change" because the relation between User and Contact was not change, only the german string in the Contact Comment was changed.

But I want see in the User History a new Entry (Changed german comment for contact XYZ).

How can I do this? :D

Thxs

like image 766
Andreas Höhmann Avatar asked Jan 27 '12 12:01

Andreas Höhmann


1 Answers

Maybe an idea would be to use a custom revision log (http://docs.jboss.org/hibernate/orm/4.1/devguide/en-US/html/ch15.html#envers-revisionlog) in which you store the "root" entity/entities for which the change is relevant. This may not be the most efficient but depending on your domain model, this may be what you want.

like image 58
Dominik Sandjaja Avatar answered Jan 03 '23 23:01

Dominik Sandjaja