2

マルチモジュール プロジェクトを wildfly-swarm に変換しようとしています。ただし、適切に設定する方法がわかりません。

コア ディレクトリから実行するmvn wildfly-swarm:runと、サーバーが起動し、永続化ユニットが見つからないというエラーが表示されます。persistence.xmlモジュールにあるDBlayerので、理にかなっています。

ルート ディレクトリから実行しようとしましたが、プラグイン swarm が定義されていないと表示されます。そのため、モジュール pom.xmlrootではなく pom.xml でプラグインを定義しようとしましたが、作成できません。core-swarm.jar

では、どのように設定すればよいのでしょうか。

これは私のルート pom.xml です

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>xxx</groupId>
    <artifactId>x</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>pom</packaging>

    <properties>
        <version.wildfly.swarm>1.0.0.Final</version.wildfly.swarm>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <failOnMissingWebXml>false</failOnMissingWebXml>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.wildfly.swarm</groupId>
                <artifactId>bom</artifactId>
                <version>${version.wildfly.swarm}</version>
                <scope>import</scope>
                <type>pom</type>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <modules>
        <module>backgroundServices</module>
        <module>core</module>
        <module>DBLayer</module>
        <module>userArea</module>
    </modules>

    <dependencies>    
        <!-- Java EE 7 dependency -->
        <dependency>
            <groupId>javax</groupId>
            <artifactId>javaee-api</artifactId>
            <version>7.0</version>
            <scope>provided</scope>
        </dependency>
        <!-- Wildfly Swarm Fractions -->
        <dependency>
            <groupId>org.wildfly.swarm</groupId>
            <artifactId>cdi</artifactId>
        </dependency>
        <dependency>
            <groupId>org.wildfly.swarm</groupId>
            <artifactId>jpa-mysql</artifactId>
        </dependency>
        <dependency>
            <groupId>org.wildfly.swarm</groupId>
            <artifactId>jsf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.wildfly.swarm</groupId>
            <artifactId>keycloak</artifactId>
        </dependency>
        <dependency>
            <groupId>org.wildfly.swarm</groupId>
            <artifactId>logging</artifactId>
        </dependency>
    </dependencies>
</project>

次に、core.xml に以下を追加しました。

<build>
    <plugins>
        <plugin>
            <groupId>org.wildfly.swarm</groupId>
            <artifactId>wildfly-swarm-plugin</artifactId>
            <version>${version.wildfly.swarm}</version>
            <executions>
                <execution>
                    <goals>
                        <goal>package</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

コアポン:

<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <parent>
        <groupId>xxx</groupId>
        <artifactId>x</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>

    <artifactId>core</artifactId>

    <packaging>war</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
            </plugin>
                <plugin>
                    <groupId>org.wildfly.swarm</groupId>
                    <artifactId>wildfly-swarm-plugin</artifactId>
                    <version>${version.wildfly.swarm}</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>package</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
        </plugins>
    </build>


    <dependencies>
        <dependency>
            <groupId>xxx</groupId>
            <artifactId>DBLayer</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>xxx</groupId>
            <artifactId>backgroundServices</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
    </dependencies>
</project>

DBlayer pom:

<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <groupId>xxx</groupId>
        <artifactId>x</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <packaging>jar</packaging>

    <artifactId>DBLayer</artifactId>
</project>

ただし、メインメソッドは指定しませんでした。DBLayerの下にpersistence.xmlがあります:

DBLayer/src/main/resources/META-INF

そのため、ドライバーとデータソースを定義するために swarm が自動的に処理を行うと想定しています。つまり、wildfly full では、standalone.xml でドライバーとデータソースを定義する必要があります。ここでは何もしなかったので、実際にはそれが問題なのかもしれません。ただし、彼らの例では、彼らもそれを行いません。https://github.com/wildfly-swarm/wildfly-swarm-examples/blob/master/jpa/jpa-war/src/main/resources/META-INF/persistence.xml

ここに私の永続化ユニットがあります:

<persistence version="2.1"
    xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">

    <persistence-unit name="my-pu" transaction-type="JTA">
        <jta-data-source>java:/walbangDbDS</jta-data-source>
        <exclude-unlisted-classes>false</exclude-unlisted-classes>
        <shared-cache-mode>DISABLE_SELECTIVE</shared-cache-mode>

        <properties>
            <!--<property name="javax.persistence.schema-generation.database.action" value="drop-and-create"/>-->
            <!--<property name="javax.persistence.sql-load-script-source" value="sql_scripts/loading_script.sql"/>-->
            <property name="hibernate.enable_lazy_load_no_trans" value="true"/>
        </properties>
    </persistence-unit>
</persistence>
4

1 に答える 1

1

マルチモジュール Maven プロジェクトでは、ルート POM から Maven コマンドを直接起動することを忘れないでください。

まず、wildfly-swarm-plugin宣言を WAR モジュール内に保持します。WAR プロジェクトに適用されるため、他の場所に宣言するのは不適切です。次に、DBLayerモジュールcore(WAR) がそれを認識できるように (したがって、そのpersistence.xml. 最後に、コマンドライン スイッチwildfly-swarm:runを使用して、WAR モジュールでのみゴールを呼び出すようにする必要があります。-pl

そのため、ルート POM から次のコマンドを呼び出します。

mvn clean install && mvn -pl core wildfly-swarm:run

これにより、マルチモジュール プロジェクトが正しくビルドされ、Wildfly Swarm プラグインで WAR が実行されます。この GitHub リポジトリで、このようなセットアップの実際の例を見つけることができます。

于 2016-07-03T18:20:00.860 に答える