由于某些原因我还无法解决,我的代理人并没有拦截java LinkageError实例。
代理商代码:
import net.bytebuddy.agent.builder.AgentBuilder;
import net.bytebuddy.implementation.MethodDelegation;
import net.bytebuddy.implementation.SuperMethodCall;
import net.bytebuddy.matcher.ElementMatchers;
import java.lang.instrument.Instrumentation;
public class MyAgent {
public static void premain(String arguments, Instrumentation instrumentation) {
new AgentBuilder.Default()
.type(ElementMatchers.isSubTypeOf(LinkageError.class))
.transform((builder, type, classLoader, module) ->
builder.constructor(ElementMatchers.isDefaultConstructor())
.intercept(SuperMethodCall.INSTANCE.andThen(MethodDelegation.to(MyInterceptor.class)))
).installOn(instrumentation);
}
}
拦截器代码:
public class MyInterceptor {
@RuntimeType
public static void intercept(@Origin Constructor<?> constructor) throws Exception {
System.out.println("Intercepted: " + constructor.getName());
}
}
测试代码:
public static void main(String[] args) {
new NoClassDefFoundError("should be intercepted!!!").toString();
new Foo("oh").toString();
}
令人费解的是,用ElementMatchers.isSubTypeOf(LinkageError.class)
替换ElementMatchers.nameContains("Foo")
会得到预期的结果,并且会拦截Foo构造函数。
答案 0 :(得分:0)
引导加载程序加载NoClassDefFoundError
。它将无法看到你的拦截器类,这就是它永远不会被触发的原因。
尝试使用Advice
类(作为访问者)将字节码添加到应该解决此问题的匹配类中。