出现版本问题:
这是版本不匹配问题,需要Java Compiler里面的版本一致
选择File--Setting
再Build,Execution,Deployment---Compiler--java Compiler
需要把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以下。
刷新Maven,重新启动即可