考虑以下类声明:
class A{
private String x;
public A(String x) {
this.x = x;
}
}
当我尝试使用 javassist 使用以下代码为 A 类创建代理时:
ProxyFactory factory = new ProxyFactory();
factory.setSuperclass(A.class);
MethodHandler mh = new MethodHandler() {...};
A a = (A) factory.create(new Class<?>[0], new String(){"hello"}, mh);
然后我得到了java.lang.RuntimeException: java.lang.NoSuchMethodException: app.test.A_$$_javassist_0.<init>()
为什么 javassist 不根据传递给 create 方法的第二个参数的参数类型使用正确的构造函数实例化类 A?