1

我正在设置 maven 来获取带注释的 java 类并生成一些 DDL,这些 DDL 因数据库而异。有一个更好的方法吗?似乎我应该能够过滤 hbm2ddl 插件的输入(作为管道的一部分),而不是告诉它对资源过滤的输出进行操作(然后我必须从我的最终 jar 中过滤出来)。

我正在过滤我的 hibernate.cfg.xml 文件以根据本地开发人员的设置替换环境属性:

  <build>
    <filters>
      <filter>${user.home}/datamodel-build.properties</filter>
    </filters>
    <resources><resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
    </resource></resources>
  </build>

然后我在输出上运行 hbm2ddl

<plugin>
 <groupId>org.codehaus.mojo</groupId>
 <artifactId>hibernate3-maven-plugin</artifactId>
  ...
 <configuration>
   <componentProperties>
   <configurationfile>target/classes/com/myOrg/datamodel/hibernate.cfg.xml</configurationfile>
</plugin>

然后我必须从我的生产 jar 中过滤掉 hibernate.cfg.xml,因为我不想发布与我的内部开发环境相关的任何内容。

4

1 回答 1

1

我有同样的问题,这就是我解决它的方法。我使用了一个单独的 database.properties 文件来保存连接详细信息,并且我不过滤我的任何 XML 文件。

这个单独的 database.properties 文件会被过滤,但由于它是位于其中的测试资源,/src/main/test因此不会被放入最终工件中。然后我告诉 hbm2ddl 在哪里可以找到它,如下所示:

            <configuration>
                <components>
                    <component>
                        <name>hbm2ddl</name>
                        <implementation>jpaconfiguration</implementation>
                    </component>
                </components>
                <componentProperties>
                    <propertyfile>src/test/resources/database.properties</propertyfile>
                    <!-- Gives the name of the persistence unit as defined in persistence.xml -->
                    <persistenceunit>myapp-core</persistenceunit>
                    <!-- Tells the plugin to send the output to a file -->
                    <outputfilename>create-${database.vendor}-schema.sql</outputfilename>
                    <!-- Pretty Format SQL Code -->
                    <format>true</format>
                    <!-- Do not create tables automatically - other plug-ins will handle that -->
                    <export>false</export>
                    <!-- Do not print the DDL to the console -->
                    <console>false</console>
                </componentProperties>
            </configuration>

无论如何希望它有所帮助....

于 2011-01-04T16:03:46.507 回答