Rejected
Details
Assignee
UnassignedUnassignedReporter
simon goddensimon goddenComponents
Affects versions
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
simon godden
simon goddenComponents
Affects versions
Priority
Created January 22, 2010 at 5:49 PM
Updated July 8, 2014 at 3:11 PM
Resolved July 8, 2014 at 3:11 PM
I have a class hierarchy as follows:
The following table shows which attributes are on each class:
Class
Attribute
Table
RootClass
field1
rootclass
IntermediateClass
field2
intermediateclass
LeafClass
field3
leafclass
LeafClass
field4
leafclass2
AnotherLeafClass
field5
anotherleafclass
AnotherLeafClass
field6
anotherleafclass2
Using
InheritanceType.SINGLE_TABLE
, it works.Using
InheritanceType.JOINED
orInheritanceType.TABLE_PER_CLASS
at theIntermediateClass
level causes different errors:Using
InheritanceType.JOINED
causes an incorrect insert statement which thinks thatfield4
is on tableleafclass
rather thanleafclass2
:Using
InheritanceType.TABLE_PER_CLASS
causes the following error as the session factory is built:A minimal test case is attached as an maven and eclipse project. mvn test will show the error. I have not created a test case for each inheritance type - you will have to change it in the intermediate domain class to see the other error.