java: 错误: 不支持发行版本 17
作者:mmseoamin日期:2023-12-21

 出现版本问题:

java: 错误: 不支持发行版本 17,第1张

 这是版本不匹配问题,需要Java Compiler里面的版本一致

选择File--Setting

java: 错误: 不支持发行版本 17,第2张

再Build,Execution,Deployment---Compiler--java Compiler 

java: 错误: 不支持发行版本 17,第3张

 需要把17改为11

运行后,会出现

org/springframework/boot/SpringApplication has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 55.0

原因是SpringBoot使用了3.0或者3.0以上,Spring官方发布从Spring6以及SprinBoot3.0开始最低支持JDK17,需要将SpringBoot版本降低为3.0以下。

java: 错误: 不支持发行版本 17,第4张

java: 错误: 不支持发行版本 17,第5张 

刷新Maven,重新启动即可

java: 错误: 不支持发行版本 17,第6张