Could you post here mapping that causes this issue? I am unable to reproduce it against current master branch. What Hibernate / Envers version are you using? Mapping posted below seems to work fine. Attached patch is unfortunately out of date.
@Embeddable
public class CompositeEmbeddable implements Serializable {
privateint numVal;
private Date dateVal;
...
}
@Entity
@Audited
public class CompositeEmbeddedIdEntity implements Serializable {
@EmbeddedId
private CompositeEmbeddable id;
privateString data;
...
}
Could you post here mapping that causes this issue? I am unable to reproduce it against current master branch. What Hibernate / Envers version are you using? Mapping posted below seems to work fine. Attached patch is unfortunately out of date.