具有休眠依赖项的 Jar 文件无法使用 jdk 9+(openjdk 12)执行

Posted

技术标签:

【中文标题】具有休眠依赖项的 Jar 文件无法使用 jdk 9+(openjdk 12)执行【英文标题】:Jar file with hibernate dependency not executable with jdk 9+ (openjdk 12) 【发布时间】:2020-03-24 00:15:24 【问题描述】:

我无法运行 .jar 文件:java -jar。我得到了例外说:

原因:java.lang.ClassNotFoundException: javax.persistence.Persistence 在 java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583) 在 java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) 在 java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)

虽然项目直接在IDE中编译运行良好。


目前的做法:

pom.xml 文件:

 <dependencies>

        <dependency>
            <groupId>org.hibernate.javax.persistence</groupId>
            <artifactId>hibernate-jpa-2.1-api</artifactId>
            <version>1.0.2.Final</version>
        </dependency>

        <dependency>
            <groupId>org.glassfish.jaxb</groupId>
            <artifactId>jaxb-runtime</artifactId>
            <version>2.4.0-b180830.0438</version>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.5</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>1.7.5</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.16</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>5.4.2.Final</version>
        </dependency>

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <version>5.4.2.Final</version>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.8</version>
        </dependency>
        <dependency>
            <groupId>com.jcabi</groupId>
            <artifactId>jcabi-log</artifactId>
            <version>0.17.3</version>
        </dependency>

        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
            <version>2.3.1</version>
        </dependency>
        <dependency>
            <groupId>javax.activation</groupId>
            <artifactId>activation</artifactId>
            <version>1.1.1</version>
        </dependency>
        <dependency>
            <groupId>org.javassist</groupId>
            <artifactId>javassist</artifactId>
            <version>3.23.1-GA</version>
        </dependency>

        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.8.5</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.9</version>
        </dependency>

        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
            <version>1.4.7</version>
        </dependency>

        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-launcher</artifactId>
            <version>1.5.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>RELEASE</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.vintage</groupId>
            <artifactId>junit-vintage-engine</artifactId>
            <version> 5.5.0</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-params</artifactId>
            <version> 5.5.0</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version> 1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>3.0.0</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-junit-jupiter</artifactId>
            <version>RELEASE</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-ehcache</artifactId>
            <version>5.4.4.Final</version>
        </dependency>
    </dependencies>

    <build>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>12</source>
                    <target>12</target>
                    <compilerArgs>
                        --enable-preview
                    </compilerArgs>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>org.ow2.asm</groupId>
                        <artifactId>asm</artifactId>
                        <version>6.2</version>
                    </dependency>
                </dependencies>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>3.1.2</version>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>main.Main</mainClass>
                            <addClasspath>true</addClasspath>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>

            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.22.2</version>
                <dependencies>
                    <dependency>
                        <groupId>org.ow2.asm</groupId>
                        <artifactId>asm</artifactId>
                        <version>6.2</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>jvnet-nexus-staging</id>
            <url>http://maven.java.net/content/repositories/staging/</url>
            <layout>default</layout>
        </repository>
    </repositories>

</project>

我正在使用 openjdk 12,不能将 oracle 用于 docker 图像。不确定,我在这里缺少什么?

【问题讨论】:

你说的是什么意思,你不能通过java -jar运行程序。你的类路径是什么? @triplem imgur.com/a/R6ivhnf。 jar 无法运行,同样发生在 docker 容器中 TBH,这并没有显示您的类路径的外观。你用 maven 构建了一个 Uber JAR 吗?否则,您确实需要将 pom 中的所有依赖项(包括临时依赖项)放在类路径中。 @triplem 是的,我用 Maven 打包 一个 Uber JAR?在你的 pom 中没有任何提示。我猜你正在做一个“正常”的 mvn clean 包。这很好,但不包括所有必要的依赖项。如有必要,请使用 maven shade 插件或类似的东西来创建一个 uber jar。 【参考方案1】:

您似乎确实使用“mvn clean package”(或类似的)构建了一个 JAR。此 JAR 文件不包含任何依赖项,而仅包含您自己的类和资源。为了能够调用“java -jar YOURJAR.jar”,您确实需要创建一个所谓的 Uber-Jar,其中包含所有依赖项(来自 maven pom)。这可以使用 Maven Shade 插件创建。

【讨论】:

以上是关于具有休眠依赖项的 Jar 文件无法使用 jdk 9+(openjdk 12)执行的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 IntelliJ 制作具有所有依赖项的 jar 文件,也就是 Fat jar

使用 sbt-assembly 来自单个项目的具有不同外部依赖项的多个可执行 jar 文件

使用 jBPM 单 zip 分发,如何将具有依赖项的大 jar 上传到 Artifacts?

将 jar 打包到具有分离的外部资源和依赖项的 dist 目录中

如何使用 Gradle 创建具有实现依赖项的可执行胖 jar

如何使用spring boot plugin 2.0.x从一个具有不同依赖项的gradle项目生成2个jar