SSM项目启动时报错:
org/mybatis/spring/SqlSessionFactoryBean 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 (无法载入的类 [org.mybatis.spring.SqlSessionFactoryBean])
原因:
可能使用了不兼容本项目的Mybatis-Spring
依赖版本,Mybatis-Spring 3.0+
版本只只用于Spring 6.0+
,而Spring 6.0+
只能在Java 17+
版本运行。
如果你的项目还在使用Spring 5.x
等版本,请将Mybatis-Spring依赖版本更改为2.x
版本。
解决方案:
修改Mybatis-Spring依赖版本为2.x
版本
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>2.1.1</version>
</dependency>