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....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira