我是靠谱客的博主 甜美乌龟,最近开发中收集的这篇文章主要介绍nested exception is java.lang.IllegalArgumentException: Unsupported class file major version 61,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
初学spring,开启注释扫描时就报这个错误,网上寻找一番大概是JDK和Spring版本不对应。开始我是用spring5.0.0版本不行,然后5.2.0版本还是不行。
然后在spring项目中找到了对应的版本,JDK17要用5.3.0以上的了
https://github.com/spring-projects/spring-framework/wiki/Spring-Framework-Versions
这是spring的下载地址https://mvnrepository.com/artifact/org.springframework/spring-beans
导入idea时的要用的依赖
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.18</version>
</dependency>
<!--https://mvnrepository.com/artifact/org.springframework/spring-core -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.3.18</version>
</dependency>
<!--https://mvnrepository.com/artifact/org.springframework/spring-beans -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>5.3.18</version>
</dependency>
最后
以上就是甜美乌龟为你收集整理的nested exception is java.lang.IllegalArgumentException: Unsupported class file major version 61的全部内容,希望文章能够帮你解决nested exception is java.lang.IllegalArgumentException: Unsupported class file major version 61所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复