We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
用户在编写 @Instrument 类的代码时,可能使用高版本的语法,编译生成的字节码也是高版本的。
@Instrument
那么就会导致增强应用的类时,在低版本的字节码里插入了高版本的字节码,jvm会校验失败。
所以,考虑下面的解决办法:
这种情况下,有可能jvm本身版本比较低。比如 jvm版本是 jdk6,@Instrument 类的字节码版本是 jdk8的。这时@Instrument 类应该不生效。
参考: #16
The text was updated successfully, but these errors were encountered:
Auto upgrade the major version of the target class bytecode, ignore u…
131bf61
…nsupported Instrument classes. #24
No branches or pull requests
用户在编写
@Instrument
类的代码时,可能使用高版本的语法,编译生成的字节码也是高版本的。那么就会导致增强应用的类时,在低版本的字节码里插入了高版本的字节码,jvm会校验失败。
所以,考虑下面的解决办法:
@Instrument
类的 major version这种情况下,有可能jvm本身版本比较低。比如 jvm版本是 jdk6,
@Instrument
类的字节码版本是 jdk8的。这时@Instrument
类应该不生效。参考: #16
The text was updated successfully, but these errors were encountered: