我正在使用Hibernate反向工程的ant脚本从数据库表生成带注释的POJO类。在这个过程中,我想在控制台上写下所有的细节,比如每个表的名称和生成的类等。你能帮我一下吗?
<target name="gen_hibernate" description="Generate Hibernate POJO classes with prefix 'Gen'">
<hibernatetool >
<classpath path="${build.dir}/classes"/>
<jdbcconfiguration
configurationfile="${appdir}/generate/hibernate/hibernate.cfg.xml"
revengfile="${appdir}/generate/hibernate/hibernate.reveng.xml"
packagename="com.pojo.generated"
detectmanytomany="true"
detectoptimisticlock="true"
/>
</hibernatetool>
</target>
你应该试试MinuteProject,它有一个非常好的JPA2逆向工程工具,如果你想的话,它还有一个spring + hibernate层。