NoClassDefFoundError - 类路径中缺少依赖项
NoClassDefFoundError - missing dependencies in the classpath
我的问题
我写了一些 java 代码。代码 运行 在 intellij 中完美无缺。
但是当我 运行 它作为 .jar 文件时(即命令 java -jar app.jar
),我收到错误消息:
Unable to initialize main class RSocketClient.Client
Caused by: java.lang.NoClassDefFoundError: io/rsocket/transport/ClientTransport
我的研究
我一直在 google 和 Whosebug 上搜索 NoClassDefFoundError,发现错误出现在 时。但我不知道该怎么做(我的 pom.xml 如下所示)。
我的问题
我想要做的就是将我的程序变成一个 .jar 文件,然后 运行 通过我的终端 (Windows10 OS)。我感谢我能得到的所有帮助。
<strong>pom.xml</strong>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>RSocketSample</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>RSocketClient.Client</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-core</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-transport-netty</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.32</version>
</dependency>
</dependencies>
</project>
看起来您的 jar 不包含 类 RSocket 本身,但没问题。
maven 创建的 Jar 只包含你的 类(在你的模块中)。
rsocket 的 jar(以及您正在使用的其他 jar,例如 SLF4J 的东西)位于这些第三方维护者准备的相应 jar 中。
IntelliJ“看到”整个类路径(包括所有依赖项)并运行将您的应用程序与所有这些类路径关联起来。
可能您应该做的是创建一个包含依赖项的 jar:
参见 This SO thread
另一种选择是让你的 jar 保持“原样”,但要求它 运行 具有类路径中的所有依赖项,但看起来这不是你想要做的,这样在开发库而非独立应用程序时使用。
我的问题
我写了一些 java 代码。代码 运行 在 intellij 中完美无缺。但是当我 运行 它作为 .jar 文件时(即命令
java -jar app.jar
),我收到错误消息:
Unable to initialize main class RSocketClient.Client
Caused by: java.lang.NoClassDefFoundError: io/rsocket/transport/ClientTransport
我的研究
我一直在 google 和 Whosebug 上搜索 NoClassDefFoundError,发现错误出现在我的问题
我想要做的就是将我的程序变成一个 .jar 文件,然后 运行 通过我的终端 (Windows10 OS)。我感谢我能得到的所有帮助。<strong>pom.xml</strong>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>RSocketSample</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>RSocketClient.Client</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-core</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-transport-netty</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.32</version>
</dependency>
</dependencies>
</project>
看起来您的 jar 不包含 类 RSocket 本身,但没问题。 maven 创建的 Jar 只包含你的 类(在你的模块中)。
rsocket 的 jar(以及您正在使用的其他 jar,例如 SLF4J 的东西)位于这些第三方维护者准备的相应 jar 中。
IntelliJ“看到”整个类路径(包括所有依赖项)并运行将您的应用程序与所有这些类路径关联起来。
可能您应该做的是创建一个包含依赖项的 jar: 参见 This SO thread
另一种选择是让你的 jar 保持“原样”,但要求它 运行 具有类路径中的所有依赖项,但看起来这不是你想要做的,这样在开发库而非独立应用程序时使用。