単一のjarとしてパッケージ化するMavenベースのSpring-WSクライアントプロジェクトがあります。 Eclipseでは、すべてが正常に実行されます。実行可能jarとしてパッケージ化しようとすると、Spring jarがアプリケーションjarに含まれていないため、ClassNotFound例外が発生します。
そこで、アプリケーションjarにすべての依存関係を含めるために maven-shade-plugin を追加しました。アプリのjarを見ると、含まれているすべての依存関係のすべてのクラスファイルが表示されています(すべてのライブラリjarは展開されています)。
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.cws.cs.Client</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
私の問題は、パッケージングプロセスで、複数のSpring依存関係に、相互にオーバーライドする異なる META-INF/spring.schemas ファイルがあることです。その結果、私の最終的なjarには不完全なspring.schemasファイルがあります。
そのため、実行可能jarを実行しようとすると、spring.schemasファイルが不完全であるためファイルが見つからないというSpringエラーメッセージが表示されます(Spring-WSのjarがSpring-coreのspring.schemasファイルをオーバーライドしています)。
私の実行可能jarのMETA-INF/spring.schemas:
http\://www.springframework.org/schema/web-services/web-services-1.5.xsd=/org/springframework/ws/config/web-services-1.5.xsd
http\://www.springframework.org/schema/web-services/web-services-2.0.xsd=/org/springframework/ws/config/web-services-2.0.xsd
http\://www.springframework.org/schema/web-services/web-services.xsd=/org/springframework/ws/config/web-services-2.0.xsd
Spring-beans.jar META-INF/spring.schemasの代わりに:
http\://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd
http\://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd
http\://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd
http\://www.springframework.org/schema/beans/spring-beans-3.1.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd
http\://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd
http\://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd
http\://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd
http\://www.springframework.org/schema/tool/spring-tool-3.0.xsd=org/springframework/beans/factory/xml/spring-tool-3.0.xsd
http\://www.springframework.org/schema/tool/spring-tool-3.1.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd
http\://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd
http\://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd
http\://www.springframework.org/schema/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd
http\://www.springframework.org/schema/util/spring-util-3.0.xsd=org/springframework/beans/factory/xml/spring-util-3.0.xsd
http\://www.springframework.org/schema/util/spring-util-3.1.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd
http\://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd
私は困惑しています。すべてを単一の実行可能jarとしてパッケージ化できるかどうか/どのようにしたらよいかわかりません。これがシェードプラグインの設定の問題なのか、不可能なことをしようとしているのかはわかりません。独自のspring.schemasファイル(他のファイルを連結したもの)を手動で作成する必要があるのは正しくないようです。
私は銃を少し跳んだかもしれません。シェードプラグインの詳細を調べると、以前見逃していた AppendingTransformer に気付きました。しかし、私の懸念は、他のどのファイルが同じ問題を抱えているかを知る方法ですか?この特定のSpringの問題を発見/発見しました。私は似たようなことをしている可能性のある他のライブラリについては知りません...
任意の提案をいただければ幸いです。
Maven-shade-pluginの代わりに onejar-maven-plugin を使用します。 One-JAR を使用すると、Javaアプリケーションとその依存関係JARを単一の実行可能Jarファイルにパッケージ化できます。
すべてのjarの.schemaファイルの内容が一緒に追加されるように、次の構成を追加できます。
<configuration>
<transformers>
<transformer implementation="org.Apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring.handlers</resource>
</transformer>
<transformer implementation="org.Apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring.schemas</resource>
</transformer>
</transformers>
</configuration>
昨日、私もこの問題に遭遇しました。
解決策は、次の方法でアセンブリプラグインを手動で連結および構成して、必要なファイルを準備することでした。
<files>
<file>
<source>src/META-INF/spring.schemas</source>
<outputDirectory>META-INF</outputDirectory>
</file>
<file>
<source>src/META-INF/spring.handlers</source>
<outputDirectory>META-INF</outputDirectory>
</file>
</files>
<dependencySets>
<dependencySet>
<outputDirectory>/</outputDirectory>
<useProjectArtifact>true</useProjectArtifact>
<unpack>true</unpack>
<scope>runtime</scope>
<unpackOptions>
<excludes>
<exclude>META-INF/spring.handlers</exclude>
<exclude>META-INF/spring.schemas</exclude>
</excludes>
</unpackOptions>
</dependencySet>
</dependencySets>
注:1つのjarアプローチを使用するだけでは十分ではありません-手持ちの混合ファイルを特定することはできません。すべての依存関係をそのままエクスポートしてください...
Assembly plugin have issues, use below plugin
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.Apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>at.seresunit.lecturemanager_connector.App</mainClass>
</transformer>
<transformer implementation="org.Apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring.handlers</resource>
</transformer>
<transformer implementation="org.Apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring.schemas</resource>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
you may get security exception resolve it using below configuration
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
maven-Assembly-plugin を試しましたか?
依存関係のある単一のjarが作成され、このjarを実行可能にすることができます。
MainClassを使用して、実行するクラスを指定します。
<plugin>
<artifactId>maven-Assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>org.sample.App</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-Assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>