我从http://mirror.symnds.com/software/Apache/storm/apache-storm-0.9.3/apache-storm-0.9.3.tar.gz获得了Apache Storm

我从未修改/ home / user / storm / examples / storm-starter /目录中的任何内容。

当我运行此命令时

mvn exec:java -D storm.topology=storm.starter.WordCountTopology

在/ home / user / storm / examples / storm-starter /中,它显示以下错误:

[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:java (default-cli) on project storm-starter: An exception occured while executing the Java class. java.lang.InterruptedException -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
MojoExecutionException - Apache Maven - Apache Software Foundation
cwiki.apache.org


任何人都知道问题出在哪里以及如何解决?
我是新手,希望能为我提供详细的解决方案。谢谢。

最佳答案

尝试这个

转到pom.xml文件所在的路径并运行此命令

mvn -e -f pom.xml compile exec:java -D storm.topology=storm.starter.WordCountTopology


尝试将其添加到pom.xml并运行上面的命令。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.2.1</version>
    <executions>
      <execution>
        <goals>
          <goal>exec</goal>
        </goals>
      </execution>
    </executions>
    <configuration>
      <executable>java</executable>
      <includeProjectDependencies>true</includeProjectDependencies>
      <includePluginDependencies>true</includePluginDependencies>
      <classpathScope>compile</classpathScope>
      <mainClass>${storm.topology}</mainClass>
    </configuration>
</plugin>

关于java - 执行Java类时发生异常。 java.lang.InterruptedException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29670562/

10-15 01:35