当我从命令行运行我的java应用程序时,我得到以下异常:
java -jar target/my-app.jar
Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.NoClassDefFoundError: com/my_company/utilities/http_server/HttpServer
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
at java.lang.Class.privateGetMethodRecursive(Class.java:3048)
at java.lang.Class.getMethod0(Class.java:3018)
at java.lang.Class.getMethod(Class.java:1784)
at sun.launcher.LauncherHelper.validateMainClass(LauncherHelper.java:544)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:526)
Caused by: java.lang.ClassNotFoundException: com.my_company.utilities.http_server.HttpServer
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 7 more
调查我发现了以下内容:
我的本地回购包含:
~/.m2/repository/com/my_company/utilities/http_server/0.0.1-SNAPSHOT/utilities-0.0.1-20151208.162219-2.jar
MANIFEST.MF
在类路径中包含以下条目:
Class-Path: lib/utilities-0.0.1-20151208.162219-2.jar
并且target
目录包含lib
子文件夹,其中包含以下文件:
utilities-0.0.1-SNAPSHOT.jar
我的POM文件包含以下条目:
<dependency>
<groupId>com.my_company.utilities</groupId>
<artifactId>utilities</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
我可以看到异常是由类路径中的错误条目引起的。但我不知道为什么这是错的 - 也就是为什么这些名字不同。有人可以帮忙吗?
如果我从Eclipse中运行应用程序,则不会发生异常。
答案 0 :(得分:0)
尝试禁用<useUniqueVersions>
配置元素:
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<useUniqueVersions>false</useUniqueVersions>
</manifest>
</archive>
</configuration>
</plugin>