启动springboot项目时报错:无法访问org.springframework.web.bind.annotation.GetMapping …具有错误的版本 61.0,应为52.0

报错原因:jdk版本1.8 与 spring boot 3.0.1 版本不匹配

解决方案:将springboot版本降级即可(比如2.5.4就是稳定版本)。如下图:

启动springboot项目时报错:无法访问org.springframework.web.bind.annotation.GetMapping …具有错误的版本 61.0,应为52.0_第1张图片

 注意:修改完成后刷新下maven,如下图。

启动springboot项目时报错:无法访问org.springframework.web.bind.annotation.GetMapping …具有错误的版本 61.0,应为52.0_第2张图片

启动成功后,如下图。

启动springboot项目时报错:无法访问org.springframework.web.bind.annotation.GetMapping …具有错误的版本 61.0,应为52.0_第3张图片 由上图可知,启动时携带的端口是8080,context path是空,也就是说访问时一个斜杠就可以,在浏览器上访问,如下图。

启动springboot项目时报错:无法访问org.springframework.web.bind.annotation.GetMapping …具有错误的版本 61.0,应为52.0_第4张图片

启动springboot项目时报错:无法访问org.springframework.web.bind.annotation.GetMapping …具有错误的版本 61.0,应为52.0_第5张图片

代码如下:

启动springboot项目时报错:无法访问org.springframework.web.bind.annotation.GetMapping …具有错误的版本 61.0,应为52.0_第6张图片 注:这是个最基本的springboot程序。 

 

 

你可能感兴趣的:(spring,boot,intellij-idea,java)