7

我正忙着将现有项目从 Ant 构建转换为使用 Maven 构建的项目。此构建的一部分包括使用 hibernate hbm2java 工具将 .hbm.xml 文件集合转换为 Java。这是用于执行此操作的 Ant 脚本片段:

<target name="dbcodegen" depends="cleangen" 
        description="Generate Java source from Hibernate XML">
  <hibernatetool destdir="${src.generated}">
    <configuration>   
      <fileset dir="${src.config}">
        <include name="**/*.hbm.xml"/>
      </fileset>
    </configuration>   
    <hbm2java jdk5="true"/>
  </hibernatetool>   
</target>

我在互联网上浏览了一下,有些人似乎是(我认为)在 Maven 中使用 Ant,而其他人则使用 Maven 插件。我宁愿避免混合 Ant 和 Maven。任何人都可以建议一种方法来执行此操作,以便拾取所有 .hbm.xml 文件并且代码生成作为 Maven 代码生成构建阶段的一部分进行?

谢谢!

亚当。

4

3 回答 3

14

好吧,如果您不想混合 Ant 和 Maven(这是 IMO 的一个好主意) ,可以使用Maven Hibernate3 插件。它有一个hbm2java默认绑定到generate-sources阶段的目标。有关更多详细信息,请参阅 Mojo 的网站,但插件的设置可能如下所示:

  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>hibernate3-maven-plugin</artifactId>
    <version>2.2</version>
    <executions>
      <execution>
        <phase>generate-sources</phase>
        <goals>
          <goal>hbm2java</goal>
        </goals>
      </execution>
    </executions>
    <configuration>
      <components>
        <component>
          <name>hbm2java</name>
          <implementation>configuration</implementation>
          <outputDirectory>target/generated-sources/hibernate3</outputDirectory>
        </component>
      </components>
      <componentProperties>
        <drop>true</drop>
        <jdk5>true</jdk5>
        <configurationfile>/src/main/resources/hibernate.cfg.xml</configurationfile>
      </componentProperties>
    </configuration>
  </plugin> 

编辑:.hbm.xml插件实际上寻找target/classes生成java源文件。因此,如果您将映射文件放入 中,它们将在插件调用的阶段src/main/resources被复制到其中,并且一切正常。我刚刚使用以下示例项目对此进行了测试:target/classesprocess-resources

maven-hibernate3-testcase
|-- pom.xml
`--src
    |-- 主要
    | |-- 爪哇
    | `-- 资源
    | |-- 人物.hbm.xml
    | `--休眠.cfg.xml
    `-- 测试
        `--java

几乎是空的pom.xml,它只包含上面看到的插件配置和一个 junit 依赖项。hibernate.cfg.xml包含:

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD//EN"
    "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
  <session-factory>
    <!-- Database connection settings -->
    <property name="connection.driver_class">org.apache.derby.jdbc.ClientDriver</property>
    <property name="connection.url">jdbc:derby://localhost:1527/mydatabase</property>
    <property name="connection.username">app</property>
    <property name="connection.password">app</property>

    <!-- JDBC connection pool (use the built-in) -->
    <property name="connection.pool_size">1</property>

    <!-- SQL dialect -->
    <property name="dialect">org.hibernate.dialect.DerbyDialect</property>

    <!-- Echo all executed SQL to stdout -->
    <property name="show_sql">false</property>

    <!-- Mapping files -->
    <mapping resource="Person.hbm.xml" />
  </session-factory>
</hibernate-configuration>

Person.hbm.xml看起来如下:

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-mapping
   PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN"
   "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping>

  <class name="Person" table="person">
    <id name="id" type="int">
      <generator class="increment" />
    </id>

    <property name="name" column="cname" type="string" />
  </class>

</hibernate-mapping>

使用此配置,运行mvn install生成Person.java如下所示:

$ cat target/generated-sources/hibernate3/Person.java 
// default package
// Generated Dec 14, 2009 2:19:22 PM by Hibernate Tools 3.2.2.GA



/**
 * Person generated by hbm2java
 */
public class Person  implements java.io.Serializable {


     private int id;
     private String name;

    public Person() {
    }

    public Person(String name) {
       this.name = name;
    }

    public int getId() {
        return this.id;
    }

    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }




}

一切都按描述工作。

于 2009-12-14T11:18:27.813 回答
0

帕斯卡,再次感谢您的帮助!您的解决方案效果很好。

我在处理这个问题时遇到的其他一些事情。第一个与这是一个相当大的项目有关,因此我将其拆分为多个 Maven 模块以反映原始 ant 多目录构建。包含生成的类的模块实际上并不进行任何数据库访问,因此 hibernate.cfg.xml 文件不需要,在这种情况下也不应该包含任何数据库连接信息。我已经尝试过了,它与 Pascal 提供的文件的缩减版本一起工作得很好,所有的属性标签都被删除了。

有了这个,构建从命令行运行良好。但是,尽我所能,我无法说服其他模块在从 Eclipse 运行时选择生成的类。目前,我对此的解决方案是将以下行添加到配置/组件/组件下的 POM 中:

<outputDirectory>/src/main/java</outputDirectory>

这会强制在 eclipse 可以为其他模块提取它们的地方生成文件。完成此操作后,您必须在命令行上进行构建,然后请求 Eclipse 刷新源目录的内容以获取新文件。到目前为止,我不知道有一种更清洁的方法来处理这个......

于 2009-12-14T23:20:18.260 回答
0

如果您需要在阶段编译中包含 *.hbm.xml;编辑您的 pom.xml 并添加以下代码:

<build>
                <resources>
            <resource>
                <directory>source/com/qfund/orm/</directory>
                <targetPath>com/qfund/orm/</targetPath>
                <includes>
                    <include>*.hbm.xml</include>
                </includes>
            </resource>
        </resources>
        <testResources>
            <testResource>
                <directory>src/test/java/</directory>
                <includes>
                    <include>*.xml</include>
                    <include>*.xsd</include>
                    <include>*.xslt</include>
                    <include>*.properties</include>
                </includes>
            </testResource>
        </testResources>
</build>
于 2012-04-19T14:33:14.033 回答