当前位置: 首页 > 知识库问答 >
问题:

在-源1.5[ERROR]中不支持开关中的字符串(使用-源7或更高版本来启用开关中的字符串)[重复]

傅朝
2023-03-14

我使用的是Java 1.8.101版本。当我运行maven clean install时,我发现了一个错误

strings in switch are not supported in -source 1.5
[ERROR] (use -source 7 or higher to enable strings in switch).

我不知道为什么,因为我已经使用java 1.8.101版本。\

任何帮助都会很好。非常感谢您的帮助。附上截图。

共有1个答案

臧梓
2023-03-14

正如@Jeremy所建议的那样,将pom.xml文件的条目设置为-

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

并在命令行上使用mvn clean install验证更改。

 类似资料: