10

DDL 作成/ドロップ スクリプトの生成に使用された は、新しいバージョン (を使用) とhibernate3-maven-plugin互換性がなくなったようです。Hibernate 4.3JPA 2.1

私はこのプラグイン構成を使用します:

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>hibernate3-maven-plugin</artifactId>
                <version>3.0</version>
                <executions>
                    <execution>
                        <id>generate-sql-schema</id>
                        <phase>process-sources</phase>
                        <goals>
                            <goal>hbm2ddl</goal>
                        </goals>
                        <configuration>
                            <hibernatetool>
                                <jpaconfiguration persistenceunit="${persistenceUnitName}" />
                                <hbm2ddl update="true" create="true" export="false"
                                    outputfilename="src/main/sql/schema.sql" format="true"
                                    console="true" />
                            </hibernatetool>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

しかし、次のエラーが表示されます。

[ERROR] Failed to execute goal org.codehaus.mojo:hibernate3-maven-plugin:3.0:hbm2ddl (generate-sql-schema) on project my-project: There was an error creating the AntRun task.
An Ant BuildException has occured: java.lang.NoClassDefFoundError: org/hibernate/util/ReflectHelper: org.hibernate.util.ReflectHelper -> [Help 1]

このクラスは新しいパッケージに移行されました:org.hibernate.internal.util.ReflectHelper

ただし、MAVEN ビルドで DDL 作成スクリプトを生成し続ける明確な方法が見つかりませんでした。

hibernate4-maven-plugin、またはそれを行う他の公式の方法はありません。

だから何 ?サポートすべき主な機能ではないでしょうか。どうやってするの ?

4

1 に答える 1

25

現在、DDL スクリプトを生成する適切なHibernate 4.3+方法JPA 2.1は、次の JPA 2.1 プロパティのセットを使用することです。

<property name="javax.persistence.schema-generation.scripts.action" value="create"/>
<property name="javax.persistence.schema-generation.create-source" value="metadata"/>
<property name="javax.persistence.schema-generation.scripts.create-target" value="target/jpa/sql/create-schema.sql"/>

JPA 2.1 でのスキーマ生成のその他のプロパティとコンテキストの概要については、 https ://blogs.oracle.com/arungupta/entry/jpa_2_1_schema_g​​eneration を参照してください。

公式の JPA 2.1 仕様はこちら: https://jcp.org/aboutJava/communityprocess/final/jsr338/index.html

これは実行時に生成されるため、ビルド時にこの DDL 生成を実行することをお勧めします。

このスクリプトをプログラムで生成する JPA 2.1 アプローチは次のとおりです。

import java.io.IOException;
import java.util.Properties;

import javax.persistence.Persistence;

import org.hibernate.jpa.AvailableSettings;

public class JpaSchemaExport {

    public static void main(String[] args) throws IOException {
        execute(args[0], args[1]);
        System.exit(0);
    }

    public static void execute(String persistenceUnitName, String destination) {
        System.out.println("Generating DDL create script to : " + destination);

        final Properties persistenceProperties = new Properties();

        // XXX force persistence properties : remove database target
        persistenceProperties.setProperty(org.hibernate.cfg.AvailableSettings.HBM2DDL_AUTO, "");
        persistenceProperties.setProperty(AvailableSettings.SCHEMA_GEN_DATABASE_ACTION, "none");

        // XXX force persistence properties : define create script target from metadata to destination
        // persistenceProperties.setProperty(AvailableSettings.SCHEMA_GEN_CREATE_SCHEMAS, "true");
        persistenceProperties.setProperty(AvailableSettings.SCHEMA_GEN_SCRIPTS_ACTION, "create");
        persistenceProperties.setProperty(AvailableSettings.SCHEMA_GEN_CREATE_SOURCE, "metadata");
        persistenceProperties.setProperty(AvailableSettings.SCHEMA_GEN_SCRIPTS_CREATE_TARGET, destination);

        Persistence.generateSchema(persistenceUnitName, persistenceProperties);
    }

}

ご覧のとおり、とてもシンプルです。

これを AntTask、または次のような MAVEN ビルド (MAVEN の場合) で使用できます。

<plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.7</version>
    <executions>
        <execution>
            <id>generate-ddl-create</id>
            <phase>process-classes</phase>
            <goals>
                <goal>run</goal>
            </goals>
            <configuration>
                <target>
                    <!-- ANT Task definition -->
                    <java classname="com.orange.tools.jpa.JpaSchemaExport"
                        fork="true" failonerror="true">
                        <arg value="${persistenceUnitName}" />
                        <arg value="target/jpa/sql/schema-create.sql" />
                        <!-- reference to the passed-in classpath reference -->
                        <classpath refid="maven.compile.classpath" />
                    </java>
                </target>
            </configuration>

        </execution>
    </executions>
</plugin>

公式のhibernate-maven-pluginも、何らかの方法でトリックを実行する場合と実行しない場合があることに注意してください。

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-maven-plugin</artifactId>
    <version>4.3.1.Final</version>
</dependency>

楽しみ !:)

于 2014-12-05T10:47:48.770 に答える