字节好友 - 如何委托私有方法?

Byte Buddy - How to delegate a private method?

我有以下单元测试:

@Test
public void TestPrivateMethodDelegation() throws InstantiationException, IllegalAccessException, IllegalArgumentException, 
    InvocationTargetException, NoSuchMethodException, SecurityException
{
    Foo foo = new ByteBuddy()
        .subclass(Foo.class)
        .method(named("getHello")
            .and(isDeclaredBy(Foo.class)
            .and(returns(String.class))))
        .intercept(MethodDelegation.to(new Bar()))
        .make()
        .load(Foo.class.getClassLoader(), ClassReloadingStrategy.fromInstalledAgent())
        .getLoaded()
        .getDeclaredConstructor().newInstance();

    Method privateMethod = Foo.class.getDeclaredMethod("getHello");
    privateMethod.setAccessible(true);

    assertEquals(privateMethod.invoke(foo), new Bar().getHello());
}

这是它使用的 classes :

@NoArgsConstructor
public class Foo 
{
    @SuppressWarnings("unused")
    private String getHello()
    {
        return "Hello Byte Buddy!";
    }
}

@NoArgsConstructor
public class Bar 
{
    public String getHello()
    {
        return "Hello Hacked Byte Buddy!";
    }
}

当我在 Foo class 中创建 getHello() 方法 public 时,此测试通过。当我将其保留为私有时,测试失败,因为我只能假设私有方法未正确委派。

甚至可以将私有方法委托给另一个 class 吗?

谢谢!

不,不是。 Byte Buddy 生成字节码,就像 javac 会做的那样,这个字节码必须有效才能运行。您不能从另一个 class 调用私有方法,因此,Byte Buddy 抛出异常。