我使用的是IntelliJ IDEA Ultimate 2019.3.1。每当我尝试启动任何简单的Java Maven项目(可能它甚至是一个简单的Hello World),我得到以下错误:

Error:java: error: release version 5 not supported

运行java——version by terminal得到如下输出:

openjdk 11.0.5 2019-10-15
OpenJDK Runtime Environment (build 11.0.5+10-post-Ubuntu-0ubuntu1.1)
OpenJDK 64-Bit Server VM (build 11.0.5+10-post-Ubuntu-0ubuntu1.1, mixed mode, sharing)

运行javac——version by terminal得到如下输出:

javac 11.0.5

转到Java编译器的设置(在这里建议),我看到这个:

我尝试将“目标字节码版本”编辑为1.8,但我得到以下错误:

Error:(1, 26) java: package javafx.application does not exist
Error:(2, 20) java: package javafx.stage does not exist
Error:(4, 27) java: cannot find symbol
  symbol: class Application
Error:(12, 23) java: cannot find symbol
  symbol:   class Stage
  location: class Main
Error:(7, 9) java: cannot find symbol
  symbol:   method launch(java.lang.String[])
  location: class Main
Error:(11, 5) java: method does not override or implement a method from a supertype

将其更改为1.11版本,我得到这个错误:

Error:java: Source option 5 is no longer supported. Use 6 or later.

你认为是什么问题?我该怎么解决呢?


当前回答

见https://stackoverflow.com/a/12900859/104891。

首先,像这样在pom.xml中设置语言级别/发布版本:

<properties>
  <maven.compiler.source>1.8</maven.compiler.source>
  <maven.compiler.target>1.8</maven.compiler.target>
</properties>

否则,Maven将默认值设置为1.5。你还需要包含maven-compiler-plugin(如果你还没有的话):

<dependency>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>3.8.1</version>
</dependency>

此外,尝试在以下每个地方更改Java版本:

11.文件->项目结构->项目->项目SDK ->

11.文件->项目结构->项目->项目语言级别->

11 .文件->项目结构->项目->模块-> ->来源->

11 . In project -> ctrl + alt + s -> Build, Execution, Deployment -> Compiler -> Java Compiler -> project bytecode version ->

在项目-> ctrl + alt + s ->构建,执行,部署->编译器-> Java编译器->模块-> 1.11。

其他回答

我花了一段时间来聚合一个实际的解决方案,但这里是如何摆脱这个编译错误。

打开IntelliJ首选项。 搜索“编译器”(或者类似于“compi”)。 向下滚动到Maven——>java编译器。的列表 模块及其相关的Java编译版本“目标字节码版本”。 选择版本号为>1.5。如果没有可用的jdk,您可能需要升级jdk。

在IntelliJ中,缺省的maven编译器版本小于版本5,这是不受支持的,因此我们必须手动更改maven编译器的版本。

我们有两种定义版本的方法。

第一个方法:

<properties>
  <maven.compiler.target>1.8</maven.compiler.target>
  <maven.compiler.source>1.8</maven.compiler.source>
</properties>

第二种方式:

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

我也有同样的问题,但有一点不同。我的错误信息如下。

IntelliJ: Error:java: Error: release version 16不支持

在Intellij中

文件 设置 构建、执行、部署 编译器

在这里有一个名为“项目字节码版本”的字段。这里的默认值是16,我把它改为8,一切都很好。

在我的情况下,唯一可行的解决方案是将以下块添加到pom.xml:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.8.0</version> <configuration> <release>12</release>
        </configuration>
        </plugin>
    </plugins>
</build>

这个问题的解决方案已经在一些答案中定义了。但还是需要表达一个细节。这个问题完全与maven有关,解决方案也在pom.xml配置中。IntelliJ只读取maven配置,如果配置有错误的信息,IntelliJ也会尝试使用该配置。

如大多数答案所示,要解决这个问题,只需将以下属性添加到项目的pom.xml中。

<properties> 
      <maven.compiler.source>1.8</maven.compiler.source> 
      <maven.compiler.target>1.8</maven.compiler.target> 
</properties>

之后,在IntelliJ端,重新导入maven配置。要重新导入maven配置,右键单击项目的pom.xml文件并选择reimport。IntelliJ首选项中的编译器版本相关信息将根据pom.xml中的值自动更新。