编程语言
首页 > 编程语言> > Java source1.5不支持diamond运算符

Java source1.5不支持diamond运算符

作者:互联网

Maven默认用的是JDK1.5去编译

diamond运算符,指的是JDK1.7的一个新特性

List<String> list = new ArrayList<String>(); // 老版本写法List<String> list = new ArrayList<>(); // JDK1.7及以后的写法

所以Maven默认使用JDK1.5去编译是不认识这个东西的,针对这种问题,在网上找了三种解决方案:

Ⅰ :在项目pom.xml中加入下面的配置即可

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

Ⅱ:直接在模块pom.xml中配置Maven的编译插件也是可以的,像下面这样:

1

2

3

4

5

6

7

8

9

10

11

12

<build>

    <plugins>

        <plugin>

            <groupId>org.apache.maven.plugins</groupId>

            <artifactId>maven-compiler-plugin</artifactId>

            <configuration>

                <source>7</source>

                <target>7</target>

            </configuration>

        </plugin>

    </plugins>

</build>

标签:xml,Maven,diamond,source1.5,1.8,运算符,编译,pom
来源: https://blog.csdn.net/weixin_43993373/article/details/116088195