gpt4 book ai didi

java - 拦截来自特定命名空间的所有方法/构造函数/getters/setters

转载 作者:行者123 更新时间:2023-11-30 08:00:22 25 4
gpt4 key购买 nike

我有一个这样实现的 Java 代理:

public static void premain(String args, Instrumentation instrumentation) throws ClassNotFoundException {
new AgentBuilder.Default()
.type(isSubTypeOf(Object.class).and(nameStartsWith("com.my.domain")))
.transform(new Transformer5())
.installOn(instrumentation);
}

然后是Transform类:

public class Transformer5 implements AgentBuilder.Transformer {
public DynamicType.Builder<?> transform(DynamicType.Builder<?> builder, TypeDescription typeDescription, ClassLoader classLoader) {
return builder.method(any().and(isDeclaredBy(typeDescription)))
.intercept(MethodDelegation.to(Interc4.class));
}
}

和一个拦截器:

public class Interc4 {

static String indent = "";

@RuntimeType
@BindingPriority(BindingPriority.DEFAULT * 3)
public static Object intercept(@SuperCall Callable<?> zuper,
@AllArguments Object[] allArguments,
@Origin String method) throws Exception {

System.out.println(indent + "Intercepted4 M" + method);

try {
indent += " ";
return zuper.call();
} finally {
//post process
indent = indent.substring(0, indent.length()-2);
}

}

}

这个问题是它不会拦截构造函数,它也会给出这种错误

Cannot define non-public or non-virtual method 'lambda$static$1' for interface type

制作拦截器的最佳方法是什么,该拦截器将代理来自某个域的类中的每个方法(我希望能够获取方法名称,检查方法参数(如果有)并直接执行)。

最佳答案

发生这种情况有两个原因。

  1. Cannot define non-public or non-virtual method 'lambda$static$1' for interface type 是由 Byte Buddy 中的验证错误引起的。我将在下一个版本中修复此问题。同时,您可以通过 new AgentBuilder.Default(new ByteBuddy().with(TypeValidation.DISABLED)) 禁用验证。

  2. 您明确地只拦截通过 .method( ... ) 匹配的方法。您可以通过 .constructor( ... ) 拦截构造函数或通过 .invokable( ... ) 拦截任何可调用的构造函数。但是,您将无法将拦截器用于必须对 super 方法调用进行硬编码的构造函数。但是,您可以将拦截器分成两部分:

    class Interceptor {
    public static void before() { ... }
    public static void after() { ... }
    }

    使用

    .intercept(MethodDelegation.to(Interceptor.class).filter(named("before")
    .andThen(SuperMethodCall.INSTANCE
    .andThen(MethodDelegation.to(Interceptor.class).filter(named("after"))))

这样,Byte Buddy 可以对 super 构造函数调用进行硬编码,同时触发 beforeafter 方法。请注意,@This 注释不适用于 before 方法。

关于java - 拦截来自特定命名空间的所有方法/构造函数/getters/setters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38523948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com