2009-09-07 233 views
1

我有一個非常複雜的數據庫模式,並想知道是否有任何工具可用於自動生成實體,如果我使用Hibernate作爲持久性機制。自動生成休眠實體

謝謝。

回答

1

如果您正在尋找數據庫「模式生成」(即自動創建PK等表格),請嘗試org.hibernate.tool.hbm2ddl.SchemaExport,正如我所說的in this SO question

使用方法如下:

AnnotationConfiguration conf = (new AnnotationConfiguration()).configure(); 
new SchemaExport(conf).create(showHql, run); 

(查看上面的鏈接獲取更多信息)

不過,如果你正在尋找自動生成的Hibernate映射文件(* .hbm。 xml)或註釋,你應該看看Hibernate Tools,如下所述。

+0

感謝。將嘗試一下 – soontobeared

0

這裏是我的構建文件中的一個例子:

<taskdef name="hibernatetool" 
     classname="org.hibernate.tool.ant.HibernateToolTask" 
     classpathref="toolslib" /> 

... 

<target name="generate-ddl-script" depends="build"> 
    <hibernatetool> 
     <annotationconfiguration configurationfile="${hibernate.cfg}" /> 
     <hbm2ddl export="false" 
       update="false" 
       drop="true" 
       create="true" 
       destdir="${scripts.dir}" 
       outputfilename="create-tables.ddl" /> 
    </hibernatetool> 
</target>