编译javaFX项目时,“类文件的版本错误为54.0,应为52.0”

时间:2019-02-16 22:43:59

标签: java maven intellij-idea javafx

我尝试用maven构建一个示例javaFX项目,但我不断收到下面的错误。

Error:(3, 26) java: cannot access javafx.application.Application
  bad class file: C:\Program Files\Java\javafx-sdk-11.0.2\lib\javafx.graphics.jar(javafx/application/Application.class)
    class file has wrong version 54.0, should be 52.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.

我从以下链接获取了该项目:

https://github.com/openjfx/samples/tree/master/IDE/IntelliJ/Non-Modular/Maven

我使用JRE 11。 这是我的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.openjfx</groupId>
    <artifactId>hellofx</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>hellofx</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <mainClass>org.openjfx.MainApp</mainClass>
    </properties>

    <organization>
        <!-- Used as the 'Vendor' for JNLP generation -->
        <name>Your Organisation</name>
    </organization>

    <dependencies>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-controls</artifactId>
            <version>11.0.2</version>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-fxml</artifactId>
            <version>11.0.2</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
                <configuration>
                    <release>11</release>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.6.0</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>java</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>org.openjfx.MainApp</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

通过从IntelliJ构建示例JavaFX应用程序并添加javafx-sdk-11.0.2作为依赖项的方式会产生完全相同的错误。

5 个答案:

答案 0 :(得分:0)

我遇到此错误,我通过添加

修复了该错误
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>10</source>
                <target>10</target>
                <encoding>UTF-8</encoding>
            </configuration>
        </plugin>
        <plugin>
            <!-- Build an executable JAR -->
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>3.1.0</version>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <classpathPrefix>lib/</classpathPrefix>
                        <mainClass>Main</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
    </plugins>
</build>

到pom文件

答案 1 :(得分:0)

我遇到了同样的问题,

只需删除org文件夹即可解决。

C:\ Temp \ JavaCABuild \ org \ openqa \ selenium \ support \ ui \ Duration.class

答案 2 :(得分:0)

您可能只需要转到File | ProjectStructure | Project-> Project language Level => 11

如果您将其设置为最高级,那么它对我来说就是固定的,我认为这是最好的解决方案, 如果不是11等于6或比11更低的值,javafx中的某些内容可能不起作用

如果您在其他编辑器(Intellij)中遇到此问题,则可能只需要查找设置并将其设置为11。

这是设置的图像:

setting to fix Problem in intellij

答案 3 :(得分:0)

我过去也有类似的问题。问题是java8已安装在计算机上并由maven使用,强壮的java11是默认值。解决方案是确保JAVA_HOME指向java11安装。您可以运行mvn -X来查看哪个jvm用于运行maven,哪个javac用于编译代码:

$ mvn  -X clean package
Apache Maven 3.5.4 (Red Hat 3.5.4-5)
Maven home: /usr/share/maven
Java version: 1.8.0_272, vendor: Red Hat, Inc., runtime: /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.272.b10-4.el8.x86_64/jre
Default locale: en_US, platform encoding: ANSI_X3.4-1968
OS name: "linux", version: "4.18.0-240.el8.x86_64", arch: "amd64", family: "unix"

...
... java.home=/usr/lib/jvm/java-11-openjdk-11.0.9.11-3.el8.x86_64 ...

答案 4 :(得分:0)

对于在运行 Play 2.x 应用程序 + sbt 时遇到此问题的任何人,请尝试上面列出的解决方案,并查看 Scala 版本是否已设置为 2.12.x

就我而言,我已将 Scala 版本设置为 2.13.4,但构建失败。 恢复到 Scala v2.12.10 修复了它。