java: 无法访问org.springframework.web.bind.annotation.GetMapping 错误的类文件: /C:/WorkSoft/apache-maven-3.6
时间:2024-03-26 14:36:04 来源:网络cs 作者:峨乐 栏目:卖家故事 阅读:
一、报错问题:
java: 无法访问org.springframework.web.bind.annotation.GetMapping
错误的类文件: /C:/WorkSoft/apache-maven-3.6.1/repository/org/springframework/spring-web/6.0.13/spring-web-6.0.13.jar!/org/springframework/web/bind/annotation/GetMapping.class
类文件具有错误的版本 61.0, 应为 52.0
请删除该文件或确保该文件位于正确的类路径子目录中。
二、问题背景
版本信息:spring boot:3.1.5,jdk:1.8
pom.xml
三、原因分析
SpringBoot使用了3.0或者3.0以上,因为Spring官方发布从Spring6以及SprinBoot3.0开始最低支持JDK17,所以仅需将SpringBoot版本降低为3.0以下即可.Spring Boot 3.0 最低要求 Java 17,并向上兼容支持 Java 19。
四、解决方案
升级JDK版本,将JDK版本升级为JDK17及以上版本。
降低SpringBoot版本,将SpringBoot版本降低为3.0以下。
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.6</version> <relativePath/> <!-- lookup parent from repository --></parent>阅读本书更多章节>>>>
本文链接:https://www.kjpai.cn/gushi/2024-03-26/148960.html,文章来源:网络cs,作者:峨乐,版权归作者所有,如需转载请注明来源和作者,否则将追究法律责任!