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
代码:
new EventWatchBuilder(watcher) .onClass("com.xxx.SomeInterface") .includeSubClasses() .onBehavior("someMethod") .onWatch(listener,BEFORE,RETURN)
问题描述: 我有个接口com.xxx.SomeInterface ,它有个jdk代理,和一个子类,我希望上面的代码增强的是接口的jdk代理,而不是增强接口的子类。实测上面的代码增强的是接口的子类,未增强jdk代理
com.xxx.SomeInterface
The text was updated successfully, but these errors were encountered:
new EventWatchBuilder(watcher).onClass("*").hasInterfaceTypes("com.xxx.SomeInterface")
Sorry, something went wrong.
No branches or pull requests
代码:
问题描述:
我有个接口
com.xxx.SomeInterface
,它有个jdk代理,和一个子类,我希望上面的代码增强的是接口的jdk代理,而不是增强接口的子类。实测上面的代码增强的是接口的子类,未增强jdk代理The text was updated successfully, but these errors were encountered: