I'd need something like this:
Code:
package com.xxxx.yyyy.zzzz;
OriginalDaoGENERATED extends OriginalDao
{
}
where OriginalDao is one of my Daos generated by
Code:
<target name="hbm2java" depends="hbm2config">
<hibernatetool destdir="${build.dir}/src" >
<configuration configurationfile="${build.dir}/hibernate.cfg.xml">
</configuration>
<hbm2java jdk5="true"/>
</hibernatetool>
</target>
I've read some forum entries that are about somehow related issues, but I dind't read a final answer somewhere.
The only solution seems to be <hbmtemplate>, but the only documenation I could find for it is:
http://www.hibernate.org/hib_docs/tools/reference/en/html/ant.html#hbmtemplate
And I just cant make it happen with the information there.
Any hint's where to get more detailed docu (meaning dummy howto), or can someone write a short one here ?
Env-Info, using:
jdk5, no ejb, hibernate 3, and the jar's in org.hibernate.eclipse_3.1.0.beta5 for the hibernatetool ant-tasks.
Any help at all, much appreciated
fish