无法使用hibernate3-maven-plugin-3.0生成hbm2ddl

无法使用hibernate3-maven-plugin-3.0生成hbm2ddl,第1张

无法使用hibernate3-maven-plugin-3.0生成hbm2ddl

配置方式已更改为直接使用ant
hibernate工具插件。因此,配置与ant插件格式完全相同,而无需额外的taskDef例如jpaconfiguration。有关更多信息,请参见hibernate
ant工具参考文档:http
:
//docs.jboss.org/tools/3.3.0.Final/en/hibernatetools/html_single/index.html#d0e4651。


对于具有jpa配置的hbm2ddl,可以使用以下命令:

<plugin>    <!-- run "mvn hibernate3:hbm2ddl" to generate a schema -->    <groupId>org.prehaus.mojo</groupId>    <artifactId>hibernate3-maven-plugin</artifactId>    <version>3.0</version>    <configuration>        <hibernatetool> <jpaconfiguration persistenceunit="unitname" /> <hbm2ddl export="false" create="true"     update="true" format="true" outputfilename="schemaDiff.ddl" />        </hibernatetool>    </configuration></plugin>

出现故障时 ,将使用“ target / antrun / build-main.xml”文件配置hibernate工具。对于上面的示例,该示例如下所示:

<?xml version="1.0" encoding="UTF-8" ?><project name="maven-antrun-" default="main"  ><target name="main">  <taskdef classname="org.hibernate.tool.ant.EnversHibernateToolTask" name="hibernatetool"/>  <mkdir dir="/home/xxx/workspace/projectname/target/sql/hibernate3"/>  <hibernatetool destdir="/home/xxx/workspace/projectname/target/sql/hibernate3">    <jpaconfiguration persistenceunit="schemaDiff"/>    <hbm2ddl update="true" export="false" outputfilename="schemaDiff.ddl" format="true" create="true"/>  </hibernatetool></target></project>


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存