具有休眠注释的架构导出

具有休眠注释的架构导出,第1张

具有休眠注释的架构导出

确实,原始的Hibernate Core

SchemaExportTask
只能处理Hibernate
XML映射文件,而不能处理注释。您需要的是Hibernate
Tools
HibernateToolTask
附带的工具。

这是一个改编自Java Persistence With Hibernate的用法示例:

<taskdef name="hibernatetool"         classname="org.hibernate.tool.ant.HibernateToolTask"         classpathref="project.classpath"/>  <target name="schemaexport" depends="compile, copymetafiles"          description="Exports a generated schema to DB and file">    <hibernatetool destdir="${basedir}">      <classpath path="${build.dir}"/>      <configurationconfigurationfile="${build.dir}/hibernate.cfg.xml"/>      <hbm2ddl          drop="true"          create="true"          export="true"          outputfilename="helloworld-ddl.sql"          delimiter=";"          format="true"/>    </hibernatetool></target>
也可以看看
  • Hibernate 3注释和蚂蚁


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5564730.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存