hibernate.connection.driver_class=oracle.jdbc.driver.OracleDriver hibernate.connection.url=jdbc:oracle:thin:@localhost:1521:orcl hibernate.connection.username=system hibernate.connection.password=bdqn hibernate.dialect=org.hibernate.dialaect.OracleDialect直接把这个文件保存在项目下,并命名为helloworld.db.properties。这里显示的五行是连接到数据库并读取所有表和列所需的最少代码。你可能已经创建了一个Hibernate XML配置文件,而不是helloworld.db.properties,但是没有必要把这弄得比需要的更复杂。
<taskdef name="hibernatetool" classname="org.hibernate.tool.ant.HibernateToolTask" classpathref="project.classpath" /> <target name="reveng.hbmxml"> <hibernatetool destdir="${basedir}/src"> <jdbcconfiguration propertyfile="${basedir}/helloworld.db.properties" revengfile="${basedir}/helloworld.reveng.xml" /> <!--导出实体映射文件--> <hbm2hbmxml /> <!--导出hibernate.cfg.xml文件--> <hbm2cfgxml /> </hibernatetool> </target>Ant的这个HibernateToolTask定义和以前的一样。假设你将重用前面章节中介绍过的大部分构建文件,并且如project.classpath这样的引用也是一样的。
<?xml version="1.0" encoding="utf-8" ?> <!DOCTYPE hibernate-reverse-engineering SYSTEM "http://hibernate.sourceforge.net/hibernate-reverse-engineering-3.0.dtd"> <hibernate-reverse-engineering> <table-filter match-name="TBL_MESSAGE" package="cn.jbit.hibernate.entity" /> <table name="TBL_MESSAGE" schema="SYSTEM" class="Message"> <primary-key> <generator class="native" /> <key-column name="MESSAGE_ID" property="id" type="long"/> </primary-key> <column name="MESSAGE_TEXT" property="text" type="string"/> <foreign-key constraint-name="FK_NEXT_MESSAGE"> <many-to-one property="nextMessage"/> <set exclude="true"/> </foreign-key> </table> </hibernate-reverse-engineering>如果现在使用这个定制运行Ant目标,它就会在源目录的hello包中生成Message.hbm.xml文件。(首先要把Freemarker和jTidy JAR文件复制到你的库目录里面)。
<!--实体类生成--> <target name="reveng.pojos" description="实体类生成"> <hibernatetool destdir="${basedir}/src"> <configuration> <fileset dir="${basedir}/src"> <include name="**/*.hbm.xml" /> </fileset> </configuration> <hbm2java jdk5="true" /> </hibernatetool> </target><configuration>读取所有的Hibernate XML映射文件,<hbm2java>导出器通过默认的策略生成Java源代码。
<!--生成Java Persistence实体类--> <target name="reveng.entities" description="生成Java Persistence实体类"> <hibernatetool destdir="${basedir}/src"> <jdbcconfiguration propertyfile="${basedir}/helloworld.db.properties" revengfile="${basedir}/helloworld.reveng.xml" /> <hbm2java jdk5="true" ejb3="true"/> <hbm2cfgxml ejb3="true"/> </hibernatetool> </target>这个目标生成包含映射注解的实体类源代码和列有这些被映射类的hibernate.cfg.xml文件。可以直接编辑Java源代码来定制映射,如果在反向工程自定义文件中定制太受限制的话。
Hibernate实战_笔记14(反向工程),布布扣,bubuko.com
原文:http://blog.csdn.net/com185272358/article/details/20942631