按照documentation,当我们将Storm拓扑部署到生产集群时,必须从Maven中排除Storm的jar,因为它已经在类路径中,如果不这样做,将会出现错误就像multiple default.yaml in classpath
。
那么我们该怎么做呢?该文档提供了一些详细信息,但不够清晰。当我们配置Maven并构建jar时,仍然包含org.apache.storm
jar,在jar中有一个default.yaml
,实际上,如果在构建中打开调试输出,则会看到类似以下的警告:
[WARNING]The following patterns were never triggered in this artifact inclusion filter: o 'org.apache.storm:storm-core:jar:1.1.1'.
将依赖项
org.apache.storm
的范围更改为provided
,并且它不起作用。<dependency>
<groupId>org.apache.storm</groupId>
<artifactId>storm-core</artifactId>
<type>jar</type>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>
最佳答案
documentation of Storm告诉我们排除Storm依赖项,并提供a link to a page of Maven,它说明了如何执行此操作,但缺少完整的示例。事实证明,即使Eclipse不抱怨将两个文件放在一起时,我们也必须创建另一个XML文件作为程序集配置的描述符,而不是将配置直接放在pom.xml
中。
并且,在第二个xml文件中,范围应为compile
而不是runtime
。
方法如下:
我们的pom.xml
带有assembly
插件,指向另一个描述符xml文件:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<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>
<configuration>
<descriptors>
<descriptor>/src/main/resources/exclude-storm.xml</descriptor>
</descriptors>
<archive>
<manifest>
<mainClass>path.to.main.class</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
注意以下部分:(应为完整路径)
<descriptors>
<descriptor>/src/main/resources/exclude-storm.xml</descriptor>
</descriptors>
在这条路:
<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>exclude-storm</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory>/</outputDirectory>
<useProjectArtifact>false</useProjectArtifact>
<unpack>true</unpack>
<scope>compile</scope> <!-- note here!!!! -->
<excludes>
<exclude>org.apache.storm:storm-core:jar:1.1.1</exclude>
</excludes>
</dependencySet>
</dependencySets>
<fileSets>
<fileSet>
<outputDirectory>/</outputDirectory>
<directory>${project.build.outputDirectory}</directory>
</fileSet>
</fileSets>
</assembly>
在这里,我们添加了Maven文档页面的设置。
最重要的是:排除格式:应为:(ref)
groupId:artifactId:type[:classifier]:version
和范围!
runtime
是默认设置,我将其更改为compile
并且可以使用。最后,在编译时,请使用:
clean assembly:assembly
并打开调试输出以在控制台中查看完整的输出。如果你:
建立成功
搜索输出,未找到类似以下内容的内容:
[WARNING]The following patterns were never triggered in this artifact inclusion filter: o 'org.apache.storm:storm-core:jar:1.1.1'.
罐子里没有
default.yaml
然后,您知道您已经成功。
感谢您提出另一个问题和答案:How to exclude dependencies from maven assembly plugin : jar-with-dependencies?
关于java - Apache Storm-如何在生产集群中的Maven中排除Storm jar,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48582602/