Maven 项目错误:-source 1.5 中不支持菱形/多通道运算符

2022-09-04 08:45:39

我无法构建我的maven java Web应用程序,因为以下两个错误:

diamond operator is not supported in -source 1.5
  (use -source 7 or higher to enable diamond operator)

multi-catch statement is not supported in -source 1.5
  (use -source 7 or higher to enable multi-catch statement)

我很困惑,因为我使用java 1.8.0作为我的项目,我从来没有真正使用过1.5

enter image description here

enter image description here

是什么原因导致此问题,我该如何解决?

在pom.xml中添加folllwing线后,我试图构建它,但没有成功:

 <properties>
        <sourceJdk>1.8</sourceJdk>
        <targetJdk>1.8</targetJdk>
 </properties>

答案 1

尝试在你的 pom 中声明 。maven-compiler-plugin

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

答案 2

您也可以通过这种方式添加它,方法是将其包含在您的pom中.xml

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

推荐