I am using 5.1.0 GA and 5.5M2 releases.
MyEclipse reverse-eng wizard does not filter out tables specified in “hibernate.reveng.xml” . Any idea how to make it work.
I want to exclude certain tables during Hibernate Reverse Engineering process. I have created “hibernate.reveng.xml” file. I provide location of this file to the reverse-eng wizard. This file contains following lines:
<hibernate-reverse-engineering>
<table-filter match-schema=”.*” match-name=”ERR$.*” exclude=”true”/>
</hibernate-reverse-engineering>
For testing purpose I added following lines to “hibernate.reveng.xml”
<type-mapping>
<sql-type jdbc-type=”NUMERIC” precision=’1′ hibernate-type=”boolean” />
</type-mapping>
MyEclipse reverse-eng wizard does show these values in “customized type mapping” table. It means the wizard does read the “hibernate.reveng.xml” file.
Do I need to specify “Custom rev-eng strategy”? Is it optional. Currently I am not specifying it.