idea报错:Caused by: java.lang.UnsupportedClassVersionError: org/mybatis/spring/boot/autoconfigure/MybatisDependsOnDatabaseInitializationDetector 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 52.0
时间: 2023-10-13 16:15:46 浏览: 309
Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type异常
这个报错的原因是你的Java运行时版本太低,无法识别编译后的class文件的版本。建议你升级你的Java运行时版本,使其与编译时使用的Java版本保持一致。如果你使用的是Maven,可以在pom.xml文件中指定Java版本,例如:
```
<properties>
<java.version>11</java.version>
</properties>
```
如果你使用的是Gradle,可以在build.gradle文件中指定Java版本,例如:
```
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
```
阅读全文