无法使用@ Advice.Origin方法以字节预算拦截方法

时间:2018-09-05 13:15:49

标签: byte-buddy

使用下面的示例,当我在方法中使用@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();
  }

1 个答案:

答案 0 :(得分:2)

@Advice.Origin@Origin之间是有区别的。咨询可以做的比委托少,但是可以内联其代码。您需要调整进口。