使用下面的示例,当我在方法中使用@Advice.Origin Method method
作为参数时,我无法截获方法调用。
public static void premain(String arguments, Instrumentation instrumentation) throws IOException {
new AgentBuilder.Default()
.type(ElementMatchers.nameEndsWith("Controller"))
.transform((builder, type, classLoader, module) -> {
return builder.method(ElementMatchers.any()).intercept(MethodDelegation.to(AccessInterceptor.class));
}
).installOn(instrumentation);
}
@RuntimeType
public static Object intercept(@Advice.Origin Method method, @SuperCall Callable<?> callable) throws Exception {
System.out.println("intercept");
return callable.call();
}
如果我删除@Advice.Origin Method method
,则代码开始起作用
@RuntimeType
public static Object intercept(@SuperCall Callable<?> callable) throws Exception {
System.out.println("intercept");
return callable.call();
}
答案 0 :(得分:2)
@Advice.Origin
和@Origin
之间是有区别的。咨询可以做的比委托少,但是可以内联其代码。您需要调整进口。