Ant と Maven を混在させたくない場合は、Maven Hibernate3 Pluginがあります (これは、IMO では良い考えです)。hbm2java
デフォルトでgenerate-sources
フェーズにバインドされている目標があります。詳細については Mojo の Web サイトを参照してください。ただし、プラグインのセットアップは次のようになります。
<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
inを探してtarget/classes
、Java ソース ファイルを生成します。したがって、マッピング ファイルを に配置すると、プラグインによって呼び出されるフェーズ中に にsrc/main/resources
コピーされ、問題なく機能します。次のサンプル プロジェクトでこれをテストしました。target/classes
process-resources
maven-hibernate3-testcase
|-- pom.xml
`-- src
|-- メイン
| | |-- ジャワ
| | `-- リソース
| | |-- Person.hbm.xml
| | ` -- hibernate.cfg.xml
`-- テスト
`--ジャバ
は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;
}
}
すべてが説明どおりに機能します。