[hibernate-issues] [Hibernate-JIRA] Created: (HHH-4439) In general it is impossible to override properties defined in @MappedSuperclass to change how they will be handled during auditing.

Eugene Goroschenya (JIRA) noreply at atlassian.com
Sun Sep 13 13:30:50 EDT 2009


In general it is impossible to override properties defined in @MappedSuperclass to change how they will be handled during auditing.
-----------------------------------------------------------------------------------------------------------------------------------

                 Key: HHH-4439
                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-4439
             Project: Hibernate Core
          Issue Type: Bug
          Components: envers
    Affects Versions: 3.5.0.Beta-1, 3.3.2, 3.2.x, 3.5
            Reporter: Eugene Goroschenya
            Priority: Critical


It seems there are several use cases with this issue but most important for me is

@MappedSuperclass
class A {
  @Audited
  private String value;
}

@Entity
@Audited
class MyAutided extends A {
}

@Entity
class MyNotAutided extends A {
}

I need MyNotAutided is not audited at all (there is not MyNotAutided_AUD table and MyNotAutided revisions are not created)
nut seems it is impossible because use case above leads to creating MyNotAutided_AUD table and creating of revisions for MyNotAutided.

I assume @AuditOverride must support it to say that MyNotAutided.value is not audited but it doesn't work.




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list