这个是最简单的网上很多教程我这边就不在重复了
- 跟步骤修改
如果出现下面异常按照上述步骤定可以解决
java: -source 8 中不支持 switch 规则 (请使用 -source 14 或更高版本以启用 switch 规则)
strings in switch are not supported in -source 1.5
[ERROR] (use -source 7 or higher to enable strings in switch).
- 使用侧工具栏的打包都是问题的,但是使用
mvn clean install
命令打包就会报错,那个这个时候就不要怀疑就是你的settings.xml
文件有问题,
- 我这边发生的错误是
java: -source 8 中不支持 switch 规则 (请使用 -source 14 或更高版本以启用 switch 规则)
原因是我maven settings.xml
里面指定了JDK1.8,删除即可
在
maven setting
文件中加上指定JDK ,再重新加载一下maven
,所有的设置都会变成JDK17
.
<profile>
<id>jdk-17id>
<activation>
<activeByDefault>trueactiveByDefault>
<jdk>17 jdk>
activation>
<properties>
<maven.compiler.source>17maven.compiler.source>
<maven.compiler.target>17maven.compiler.target>
<maven.compiler.compilerVersion>17maven.compiler.compilerVersion>
properties>
profile>
- 这个的环境一定要选你的JDK