Spring Boot 2 / Kotlin / JDK9 - 引起:java.lang.ClassNotFoundException:javax.transaction.SystemExceptio

Posted

技术标签:

【中文标题】Spring Boot 2 / Kotlin / JDK9 - 引起:java.lang.ClassNotFoundException:javax.transaction.SystemException【英文标题】:Spring Boot 2 / Kotlin / JDK9 - Caused by: java.lang.ClassNotFoundException: javax.transaction.SystemException 【发布时间】:2018-09-02 09:47:19 【问题描述】:

实际上,我正在使用 Kotlin 开发 Spring Boot v2 应用程序。我在版本 9 中使用 JDK。

添加依赖 spring-boot-starter-data-jpa 后,我收到 ClassNotFound 错误:

原因:org.springframework.beans.factory.BeanCreationException:在类路径资源 [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class] 中定义名称为“entityManagerFactory”的 bean 创建错误:调用 init方法失败;嵌套异常是 java.lang.NoClassDefFoundError: javax/transaction/SystemException

我找到了一些针对该问题的文章,并在 /src/main/kotlin 下添加了 module-info.java 并包含以下内容:

    module de.sample.backend 

//    requires java.xml.bind;
    requires javax.transaction.api;
//    requires validation.api;
    requires hibernate.jpa;
//    requires hibernate.validator;
    requires spring.beans;
    requires spring.core;
    requires spring.context;
    requires spring.tx;
    requires spring.web;
    requires spring.webmvc;
    requires spring.data.commons;
    requires spring.data.jpa;
    requires spring.boot;
    requires spring.boot.autoconfigure;
//    requires cache.api;


但是我会得到一个Caused by: java.lang.ArrayIndexOutOfBoundsException: 32800

[ERROR] 未能执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (默认编译)在项目 naehmeisterei-services 上:执行 目标的默认编译 org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile failed: 32800 -> [帮助 1] org.apache.maven.lifecycle.LifecycleExecutionException: 失败 执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (默认编译)在项目 naehmeisterei-services 上:执行 目标的默认编译 org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile failed: 32800 在 org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:213) 在 org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:154) 在 org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:146) 在 org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117) 在 org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81) 在 org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:51) 在 org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128) 在 org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:309) 在 org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:194) 在 org.apache.maven.DefaultMaven.execute (DefaultMaven.java:107) 在 org.apache.maven.cli.MavenCli.execute (MavenCli.java:955) 在 org.apache.maven.cli.MavenCli.doMain (MavenCli.java:290) 在 org.apache.maven.cli.MavenCli.main (MavenCli.java:194) 在 jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(本机方法) 在 jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62) 在 jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43) 在 java.lang.reflect.Method.invoke (Method.java:564) 在 org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (启动器.java:289) 在 org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:229) 在 org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:415) 在 org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:356) 引起: org.apache.maven.plugin.PluginExecutionException:执行 目标的默认编译 org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile failed: 32800

这是我完整的 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>de.sample.backend</groupId>
    <artifactId>sample-services</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>sample-services</name>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.0.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <!--<java.version>1.8</java.version>-->
        <maven.compiler.source>1.9</maven.compiler.source>
        <maven.compiler.target>1.9</maven.compiler.target>
        <maven.compiler.release>9</maven.compiler.release>
        <kotlin.version>1.2.20</kotlin.version>
    </properties>

    <dependencies>

        <!-- Camunda - Spring Boot -->

        <dependency>
            <groupId>org.camunda.bpm.springboot</groupId>
            <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
            <version>2.3.0</version>
        </dependency>


        <!-- Spring Boot -->

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>

        <!-- https://jaxenter.de/spring-boot-2-actuator-2-0-68749 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-test</artifactId>
            <scope>test</scope>
        </dependency>

        <!-- Kotlin -->

        <dependency>
            <groupId>org.jetbrains.kotlin</groupId>
            <artifactId>kotlin-stdlib-jdk8</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jetbrains.kotlin</groupId>
            <artifactId>kotlin-reflect</artifactId>
        </dependency>

        <!-- JUnit -->

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>

        <!-- Persistence / Database -->

        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>

        <!-- Firebase -->

        <dependency>
            <groupId>com.google.firebase</groupId>
            <artifactId>firebase-admin</artifactId>
            <version>5.9.0</version>
        </dependency>

    </dependencies>

    <build>
        <sourceDirectory>$project.basedir/src/main/kotlin</sourceDirectory>
        <testSourceDirectory>$project.basedir/src/test/kotlin</testSourceDirectory>

        <plugins>

            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>kotlin-maven-plugin</artifactId>
                <groupId>org.jetbrains.kotlin</groupId>
                <configuration>
                    <args>
                        <arg>-Xjsr305=strict</arg>
                    </args>
                    <compilerPlugins>
                        <plugin>spring</plugin>
                    </compilerPlugins>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>org.jetbrains.kotlin</groupId>
                        <artifactId>kotlin-maven-allopen</artifactId>
                        <version>$kotlin.version</version>
                    </dependency>
                </dependencies>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifestEntries>
                            <Implementation-Version>$project.version</Implementation-Version>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>9</source>
                    <target>9</target>
                    <jdkToolchain>
                        <version>9</version>
                    </jdkToolchain>
                </configuration>
            </plugin>
        </plugins>
    </build>


</project>

我实际上不知道如何解决这个问题。在另一台装有 JDK 8 的计算机上,它编译得很好。

有人可以帮忙吗?

谢谢!

更新

我使用 spring initialzr 创建了一个新的 spring-boot 项目: https://github.com/Chris81T/spring-boot-jdk9-kotlin-demo

如果不进行任何更改,我将得到相同的错误。也许有人可以寻找它来让它工作。那会很好:-)

【问题讨论】:

【参考方案1】:

您需要包含所有从 Java 9 弃用的 javaee 依赖项(替代方法是将 --add-modules java.se.ee--add-modules ALL-SYSTEM 添加到 maven 编译器选项和 java 启动应用程序,但不建议这样做,因为类将消失在 Java 11 中)。

1.需要去掉module-info.java文件,在下面添加依赖。

    在 maven 中添加一个属性(因为 surefire/failsafe 2.20.1 有一个 bug 会阻止在 Java 9 中正确运行测试):
<properties>                                                                
    <argLine>--add-modules java.base</argLine>
 </properties>

或者您可以切换到 surefire 2.21.0 - 请参阅 http://maven.apache.org/surefire/maven-surefire-plugin/java9.html

这是我认为的完整列表,您可以选择或全部使用:

    <dependency>                                                                                                                                                         
        <groupId>org.glassfish.jaxb</groupId>                               
        <artifactId>jaxb-runtime</artifactId>                               
        <version>2.3.0</version>                                            
    </dependency>                                                           
    <dependency>                                                            
        <groupId>org.glassfish.jaxb</groupId>                               
        <artifactId>jaxb-core</artifactId>                                  
        <version>2.3.0</version>                                            
    </dependency>                                                           
    <dependency>                                                            
        <groupId>javax.xml.bind</groupId>                                   
        <artifactId>jaxb-api</artifactId>                                   
        <version>2.3.0</version>                                            
    </dependency>                                                           
    <dependency>                                                            
        <groupId>javax.activation</groupId>                                 
        <artifactId>javax.activation-api</artifactId>                       
        <version>1.2.0</version>                                            
    </dependency>                                                           
    <dependency>                                                            
        <groupId>javax.annotation</groupId>                                 
        <artifactId>javax.annotation-api</artifactId>                       
        <version>1.3.1</version>                                            
    </dependency>                                                           
    <dependency>                                                            
        <groupId>javax.transaction</groupId>                                
        <artifactId>javax.transaction-api</artifactId>                      
        <version>1.2</version>                                              
    </dependency>                                                           
    <dependency>                                                            
        <groupId>javax.xml.ws</groupId>                                     
        <artifactId>jaxws-api</artifactId>                                  
        <version>2.3.0</version>                                            
    </dependency>                                                           
    <dependency>                                                            
        <groupId>com.sun.xml.ws</groupId>                                   
        <artifactId>jaxws-rt</artifactId>                                   
        <version>2.3.0</version>                                            
    </dependency> 

【讨论】:

您好 Krzysztof Krasoń,感谢您的回答。为什么包括您的依赖项列表或使用 add-modules 选项对我不起作用。实际上,我已经使用 spring initializr (start.spring.io) 创建了一个新的演示项目,并选择了像“jpa”这样的模块。如果不添加任何代码或更改某些内容,我将得到相同的错误。我会将演示推送到我的 github 并在我的帖子中提供一个链接。 @Chris81T 你删除了 module-info.java 文件吗? 是的,我已将其删除。但后来我再次收到 ClassNotFound 错误。这是一个简单的演示项目,会显示错误:github.com/Chris81T/spring-boot-jdk9-kotlin-demo @Chris81T 我为测试在答案中的工作添加了另一件事 感谢您的帮助!在 2.21.0 版本中使用 surefire 并添加依赖项“jaxb-runtime”为我完成了它。谢谢!

以上是关于Spring Boot 2 / Kotlin / JDK9 - 引起:java.lang.ClassNotFoundException:javax.transaction.SystemExceptio的主要内容,如果未能解决你的问题,请参考以下文章

如何模拟测试 Kotlin Spring Boot 2 应用程序

Kotlin 和 Spring Boot 数据资源异常

Spring Boot 2 和 Kotlin 的“URL 未标准化”

在 spring-boot 中使用 kotlin 挂起函数创建名称为“requestMappingHandlerMapping”的 bean 时出错

Spring Boot 2 / Kotlin / JDK9 - 引起:java.lang.ClassNotFoundException:javax.transaction.SystemExceptio

Kotlin Spring Boot 中的控制器验证