5

我正在尝试从 linux 的命令行运行一个 java 项目:

$ java -jar 目标/my-app.jar -csv test.csv

并得到了这个错误

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/cli/ParseException
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Class.java:2531)
    at java.lang.Class.getMethod0(Class.java:2774)
    at java.lang.Class.getMethod(Class.java:1663)
    at sun.launcher.LauncherHelper.getMainMethod(LauncherHelper.java:494)
    at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:486)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.cli.ParseException

我正在使用 maven-3,这里是我的构建 maven 配置:

<build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <encoding>${project.build.sourceEncoding}</encoding>
                    <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
                    <showDeprecation>true</showDeprecation>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <mainClass>${appClass}</mainClass>
                            <classpathPrefix>lib/</classpathPrefix>
                            <useUniqueVersions>false</useUniqueVersions>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>

还有我的 commons-cli 依赖声明

        <!-- CLI -->
        <dependency>
            <groupId>commons-cli</groupId>
            <artifactId>commons-cli</artifactId>
            <version>1.2</version>
        </dependency>

如果我将代码和依赖项删除到我的类中,我不会再收到错误。

谢谢 !

4

4 回答 4

6

您正在使用 maven,但您正在从命令行运行应用程序,因此您需要为您的应用程序提供所有必需的 jar:

方法 1:您可以在类路径中提供如下内容:

$ java -jar -cp "list-of-jars" target/my-app.jar -csv test.csv

如果您在 Windows 上,路径将以分号分隔,而在 Linux 上,路径将以冒号分隔。您可以使用通配符也喜欢/*.jar包括所有的罐子(java6+)。

方法 2:您可以使用一个 fat/uber/one jar 将所有 jar 合并到一个 jar 中,按照您的意愿运行它。

下面是使用一个罐子:

使用 Maven:您需要更新插件部分 pom.xml:

<plugin>
        <groupId>org.dstovall</groupId>
        <artifactId>onejar-maven-plugin</artifactId>
        <version>1.4.4</version>
        <executions>
          <execution>
            <goals>
                <goal>one-jar</goal>
            </goals>
          </execution>
        </executions>
    </plugin>

并更新 pom.xml 中的 pluginRepositories 部分

<pluginRepository>
        <id>onejar-maven-plugin.googlecode.com</id>
        <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
</pluginRepository>

当您执行时,mvn package您将获得yourappname-one-jar.jar并且可以运行它java -jar yourappname-one-jar.jar

方法 3:使用 maven shade 插件(正如 Robert 建议的那样):

将此添加到 pom.xml 的插件部分:

<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.4.1</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <transformers>
                <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                  <mainClass>org.sonatype.haven.HavenCli</mainClass>
                </transformer>
              </transformers>
            </configuration>
          </execution>
        </executions>
      </plugin>

mvn packageuber jar 上执行后将生成。

于 2015-09-01T12:45:52.580 回答
0

在 pom.xml 中使用 maven 程序集插件。这会将所有依赖项捆绑在一个 jar 中。

<plugin> 
<artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                       <mainClass>com.app.appmain</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
        <descriptorRef>jar-with-dependencies</descriptorRef>
            </configuration>
        </plugin>
 <dependencies>
   <dependency>
        <groupId>commons-cli</groupId>
        <artifactId>commons-cli</artifactId>
        <version>1.3</version>
    </dependency>
   </dependencies>

构建: mvn clean compile assembly:single

于 2016-11-22T19:06:49.007 回答
0

使用 maven-dependency-plugin 是一种解决方案。

 <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.8</version>
    <executions>
        <execution>
             <id>copy-dependencies</id>
             <phase>package</phase>
             <goals>
                 <goal>copy-dependencies</goal>
             </goals>
             <configuration>
                 <outputDirectory>${project.build.directory}/lib</outputDirectory>
             </configuration>
        </execution>
     </executions>
</plugin>
于 2015-09-01T12:58:50.863 回答
-2

-jar 参数与 -classpath 或缩写 -cp 不兼容。

因此,当您使用 jar 文件启动 java 进程时,您必须提供一个有效的 Manifest.mf 文件,该文件声明了一个正确的类路径。

这是来自 java 文档的清单示例:

Manifest-Version: 1.0
Class-Path: MyUtils.jar
Created-By: 1.7.0_06 (Oracle Corporation)

然后,您可以将 .jar 文件放在最终的 .jar 文件中的任何位置(然后您可以添加路径)。或者只是将其留在外面,但尊重路径,就好像它在 .jar 文件中的位置一样。

于 2015-09-01T12:58:39.297 回答