Quote:
Ive thought about not telling Hibernate at all about the subclassing and to duplicate the fields in the .hbn.xml files - but would Hibernate care about there not being getter setters for them in the specified class (only in super classes). Im going to try this now.
You can do that with the table-per-concrete-class approach. Note however that you will then get other problems with that approach. Take a look at [/url]http://www.hibernate.org/hib_docs/reference/html/inheritance.html[url]for the three possible approaches and their tradeoffs. Mapping such a huge inheritance hierarchy will not be an easy job in all cases.[/url]