背景:我正在使用 Spring 和 Maven 开发一个独立的应用程序。我想从我的应用程序创建一个 jar,以便我可以将它部署在远程服务器上并对其进行测试。
我面临以下问题,
(1) 当我通过 Eclipse 将此 jar 导出为可执行 jar 时,我遇到了异常。
Exception in thread "main"
org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHan
dler for XML schema namespace [http://www.springframework.org/schema/context]
Offending resource: class path resource [applicationContext.xml]
由于上述与 spring.handlers 文件命名空间冲突的问题,因此,我想在 Maven 中使用插件创建一个 jar,如下所示。
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.comcast.start.Application</mainClass>
</manifest>
</archive>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>jar-with-dependencies</shadedClassifierName>
<finalName>ds</finalName>
<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>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring.tooling</resource>
</transformer>
</transformers>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/alternateLocation</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
但这里的问题是我找不到将依赖库复制到我的 jar 文件中的插件。复制依赖插件会将文件复制到我的工作区,但不会将库放入我的 jar 文件中。
因为,我必须在远程机器上运行这个独立的 jar,所以在创建 jar 时,所有依赖库都应该打包在这个 jar 中。
如果您有一些想法,请提出建议。谢谢