初学Spring时遇到的一个错误:Unsupported class file major version 61 ,如图所示:
网上查了一下大概是JDK的版本与Spring的版本不一致导致的错误;刚开始我用的Spring版本是:
<dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.2.10.RELEASE</version></dependency></dependencies>
可以升级到5.3以上的版本,在试试看可能就不会报错了!
<dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.3.18</version></dependency></dependencies>
改变版本后,就运行成功了: