Byte Buddy - java.lang.NoSuchMethodException - 什么是正确的defineMethod语法?

时间:2016-11-19 12:37:34

标签: java code-generation byte-buddy

我正在尝试使用Byte Buddy为字段创建一个setter和getter。

public class Sample {

    public static void main(String[] args) throws InstantiationException, IllegalAccessException, NoSuchFieldException, SecurityException, NoSuchMethodException {

        Class<?> type = new ByteBuddy()
                .subclass(Object.class)
                .name("domain")
                .defineField("id", int.class, Visibility.PRIVATE)               
                .defineMethod("getId", int.class, Visibility.PUBLIC).intercept(FieldAccessor.ofBeanProperty())
                .make()
                .load(Sample.class.getClassLoader(), ClassLoadingStrategy.Default.WRAPPER)
                .getLoaded();

        Object o = type.newInstance();
        Field f = o.getClass().getDeclaredField("id");
        f.setAccessible(true);
        System.out.println(o.toString());       
        Method m = o.getClass().getDeclaredMethod("getId", int.class);
        System.out.println(m.getName());
    }
}

在学习页面here的访问字段部分中,声明在定义方法后使用implementation然后使用FieldAccessor.ofBeanProperty()

Method m = o.getClass().getDeclaredMethod("getId", int.class);抛出NoSuchMethodException。

创建getter和setter的正确语法是什么?

1 个答案:

答案 0 :(得分:2)

正确的方法调用应该是

Method m = o.getClass().getDeclaredMethod("getId");

int是返回类型,您不必在getDeclaredMethod调用中指定返回类型 - 只有参数类型和方法getId没有参数