Byte Buddy - 方法 Implementation.Context.Default 不是 bean 属性 - 创建一个 setter

Byte Buddy - Method Implementation.Context.Default is no bean property - creating a setter

如何使用 byte buddy 在字段上创建 setter?推荐的语法是什么?

我设法从一个字段创建了 getter(我最初的问题 ),但是使用 defineMethod 创建 setter 抛出了一个 Method Implementation.Context.Default ... is no bean property 异常。

this 问题中创建 setter 的建议方法似乎已过时。

这是我使用 byte-buddy 1.5.4 版的失败代码:

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())
                .defineMethod("setId", Void.TYPE, 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");
        System.out.println(m.getName());
        Method s = o.getClass().getDeclaredMethod("setId", int.class);
        System.out.println(s.getName());
    }

您还没有为 setter 定义参数。字节好友因此不明白该方法是如何实现的。定义setId方法时需要设置withParameters(int.class)