2

我已经参数化了 persistence.xml。我正在尝试使用 hbm2ddl 生成 ddl 架构。我怎样才能将参数传递给这个工具?

我的 persistence.xml 看起来像

<property name="hibernate.connection.driver_class" value="${persistence.connection.driver.class}"/>
<property name="hibernate.dialect" value="${persistence.dialect}"/>
<property name="hibernate.connection.password" value="${persistence.password}"/>
<property name="hibernate.connection.username" value="${persistence.username}"/>

当我启动服务器参数值作为 JAVA_OPTS 传递(使用 -Dpersistence.dialect=value)。而且效果很好。

我如何用 hbm2ddl 做到这一点?

我试过财产

<hibernatetool destdir="${gensrc.sql.dir}">
  <property key="persistence.dialect" value="org.hibernate.dialect.Oracle9Dialect"/>
  <jpaconfiguration persistenceunit="${persistence.unit.name}" />
  <classpath>
   <!-- it is in this classpath you put your classes dir,
       and/or jpa persistence compliant jar -->
    <path location="${build.classes.dir}" />
  </classpath>
  <hbm2ddl export="false" drop="true" outputfilename="create_${ant.project.name}.sql" format="true" haltonerror="true" />
</hibernatetool>

但它没有得到这个值。它向我显示错误。

build.xml:160: org.hibernate.HibernateException: Dialect class not found: ${persistence.dialect}
4

1 回答 1

3

您可以通过指定方言propertyfile。在 a 中声明它hibernate.properties

hibernate.dialect=org.hibernate.dialect.Oracle9Dialect

并像这样使用它:

<jpaconfiguration propertyfile="hibernate.properties"/>
于 2010-03-03T22:53:51.540 回答