fat jar 中的依赖项在 IDE (Java 8) 之外不起作用

Dependencies in fat jar not working outside of IDE (Java 8)

所以我正在开发这个 JavaFx 应用程序 (Java 8),它复制一个 .xlsx 文件并用 .txt 文件中的数据填充它,为此我使用 apache poi依赖。我已经通过 maven-assembly-plugin 成功地构建了一个 fat jar。这是我的 pom.xml:

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
    <plugins>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <source>8</source>
                <target>8</target>
            </configuration>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>3.1.1</version>
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>sample.Main</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        
    </plugins>
</build>

<dependencies>
    <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-ooxml</artifactId>
        <version>3.17</version>
    </dependency>
</dependencies>

我用:

构建它
mvn clean compile assembly:single

当我在 IntelliJ 中 运行 main.java 时,应用程序及其依赖项工作正常,当我通过 IntelliJ 运行 它时,构建的 fat jar 启动并正常工作(执行所有功能没有问题)。

只有当我在 IDE 之外启动我的 fat jar 时,通过 cmd 文件(启动 JavaFx 应用程序),我才遇到问题。它启动并加载 .txt 文件就好了,但在它应该使用依赖项并创建工作表的地方,程序什么都不做。这是我在 .cmd 文件中 运行 的内容:

start javaw -jar ExcelConverter-1.0-jar-with-dependencies.jar

我试过用其他各种插件(阴影等)构建它,似乎都有同样的问题。 我也尝试通过 intelliJ 将其构建为工件,同样的问题。 依赖顺序也不是问题,因为我只使用一个。

为此使用 maven shade 插件。检查 http://maven.apache.org/plugins/maven-shade-plugin/index.html

下面是示例

       <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-shade-plugin</artifactId>
            <version>3.2.4</version>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>shade</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

问题不是插件或依赖项无法正常工作,而是 apache-poi 依赖项过于占用内存,因此我的 JVM 运行 内存不足。我安装的 IntelliJ IDE 默认使用 JVM 64 位,而我的系统使用的是 32 位版本。我能够将我的 JVM 更新到 64 位并让它正常工作。