我正在尝试使用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()
创建一个setter和getter是微不足道的p>
Method m = o.getClass().getDeclaredMethod("getId", int.class);
抛出NoSuchMethodException。
创建getter和setter的正确语法是什么?
答案 0 :(得分:2)
正确的方法调用应该是
Method m = o.getClass().getDeclaredMethod("getId");
int
是返回类型,您不必在getDeclaredMethod
调用中指定返回类型 - 只有参数类型和方法getId
没有参数