maven build 时,在 -source 1.5 中不支持 switch 中的字符串(使用 -source 7 或更高版本来启用 switch 中的字符串)-6ren">
gpt4 book ai didi

java - 无法 Maven 构建 "strings in switch are not supported in -source 1.5 in eclipse while maven build"

转载 作者:行者123 更新时间:2023-12-02 12:26:17 24 4
gpt4 key购买 nike

我在 Eclipse 中运行 as->maven build 时,在 -source 1.5 中不支持 switch 中的字符串(使用 -source 7 或更高版本来启用 switch 中的字符串)。我使用的是java 8,操作系统是ubuntu 16.04。

最佳答案

您需要添加 java 版本 1.8 的 maven-compiler-plugin

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

然后进入项目属性> java编译器选择jdk版本1.8。 enter image description here

关于java - 无法 Maven 构建 "strings in switch are not supported in -source 1.5 in eclipse while maven build",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45475536/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com