Hello,
I would like to customize the settings of the hibernate-tools, thus I think of using the reveng.xml or an own class, that inherits of DelegatingReverseEngineeringStrategy.class. The aim is to
1. use increment as generator,
2. use int for the id's (not Integer) and
3. use equals() and hash() function
automatically for all entities.
My concrete problems:
- for 3.: <meta attribute="use-in-equals">true</meta> in XXX.hbm.xml has no effect when using the reveng.xml. Why?
- The hibernate.jar does not contain the DelegatingReverseEngineeringStrategy-class. Where can I get it?
Thank you
|