gpt4 book ai didi

java - 如何拦截具有标准 Java 功能(无 AspectJ 等)的方法调用?

转载 作者:IT老高 更新时间:2023-10-28 20:57:22 24 4
gpt4 key购买 nike

我想拦截对某个类 MyClass 的所有方法调用,以便能够对某些 setter 调用使用react。

我尝试使用动态代理,但据我所知,这仅适用于实现某些接口(interface)的类。但是MyClass没有这样的接口(interface)。

除了实现一个包装类之外,还有没有其他方法可以将所有调用委托(delegate)给一个成员,该成员是 MyClass 的一个实例,或者除了使用 AOP 之外?

最佳答案

如您所述,您不能使用 JDK 动态代理(无接口(interface)),而是使用 Spring和 CGLIB(Spring 附带的 JAR),您可以执行以下操作:

public class Foo
{
public void setBar()
{
throw new UnsupportedOperationException("should not go here");
}

public void redirected()
{
System.out.println("Yiha");
}
}

Foo foo = new Foo();
ProxyFactory pf = new ProxyFactory(foo);

pf.addAdvice(new MethodInterceptor()
{
public Object invoke(MethodInvocation mi) throws Throwable
{
if (mi.getMethod().getName().startsWith("set"))
{
Method redirect = mi.getThis().getClass().getMethod("redirected");
redirect.invoke(mi.getThis());
}
return null;
}
});

Foo proxy = (Foo) pf.getProxy();
proxy.setBar(); // prints "Yiha"

关于java - 如何拦截具有标准 Java 功能(无 AspectJ 等)的方法调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/576918/

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