0

我的问题

我写了一些java代码。代码在 intellij 中完美运行。
但是当我将它作为 .jar 文件(即 command java -jar app.jar)运行时,我收到错误消息:
Unable to initialize main class RSocketClient.Client
Caused by: java.lang.NoClassDefFoundError: io/rsocket/transport/ClientTransport

我的研究

我一直在 google 和 stackoverflow 上搜索 NoClassDefFoundError 并发现当依赖项丢失时会出现错误。解决方案似乎是我需要将依赖项添加到类路径或 maven 存储库。但我不知道该怎么做(我的 pom.xml 如下所示)。

我的问题

我要做的就是把我的程序变成一个 .jar 文件并通过我的终端(Windows10 操作系统)运行它。我很感激我能得到的所有帮助。

pom.xml

<?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>
4

1 回答 1

2

看起来你的 jar 不包含 RSocket 本身的类,它很好。由 maven 创建的 Jar 仅包含您的类(在您的模块中)。

rsocket 的 jar(以及您正在使用的其他 jar,例如 SLF4J 的东西)驻留在这些第三方的维护者准备的相应 jar 中。

IntelliJ“看到”整个类路径(包括所有依赖项)并使用所有这些类路径运行您的应用程序。

可能您应该做的是创建一个包含依赖项的 jar:请参阅此 SO 线程

另一种选择是保持你的jar“原样”,但要求它将与类路径中的所有依赖项一起运行,但它看起来不是你想要做的,当你开发一个库时使用这种方式而不是独立的应用程序。

于 2021-07-25T06:14:08.777 回答