Hi,
I am using HibernateTools 3.2.0 beta9a. I'm doing hbm2java, but somehow I couldn't change the name of the class that was generated. It's always defaulting to the camelcased table name, even though I'm setting the classname via the 'class' attribute of <table>:
<hibernate-reverse-engineering>
<table-filter match-name="Sys_Users" exclude="false" />
<table name="Sys_Users" class="User">
...
</table>
</hibernate-reverse-engineering>
In this case the generated class is always named SysUsers instead of User.
Does anyone know how to make this work?
thanks.
ts
|