I have 3 beans in the following pattern:
A
B extends A
C extends B
In the class-descriptor for B, I use:
<reference-descriptor name="super" class-ref="A" auto-update="true">
<foreignkey field-ref="mId" />
</reference-descriptor>
to populate the TABLE_A with data from class B
In C, I tried to use
<reference-descriptor name="super" class-ref="A" auto-update="true">
<foreignkey field-ref="mId" />
</reference-descriptor>
to populate TABLE_A with data from class C, but I received an error
"unable to read repository.xml" on startup
Changing the reference to <reference-descriptor name="super"
class-ref="B"/> allows me to properly startup and insert data into
TABLE_C, however, no data from the fields inherited from A is going into
TABLE_A.. All the fields inherited by C from B are correctly populating
in TABLE_C.
Can anyone point me at how to go about getting TABLE_A and the
associated fields to populate?