Caused by: java.lang.UnsupportedOperationException: PermittedSubclasses requires ASM9
时间: 2023-10-13 21:14:32 浏览: 322
java 操作错误(UnsupportedOperationException)
这个错误通常是因为您正在使用Java 9中的PermittedSubclasses特性,但您的项目没有添加ASM9库的依赖项。要解决这个问题,您需要在您的项目中添加ASM9库的依赖项。
如果您正在使用Maven,请在pom.xml文件中添加以下依赖项:
```xml
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.0</version>
</dependency>
```
如果您正在使用Gradle,请在build.gradle文件中添加以下依赖项:
```groovy
dependencies {
compile "org.ow2.asm:asm:9.0"
}
```
请注意,如果您正在使用Java 9以及更高版本,那么您需要使用ASM9库来支持PermittedSubclasses特性。所以,确保您已经添加了正确的依赖项。
阅读全文