检测方法时出现Javassist源错误

时间:2013-04-01 13:12:46

标签: java reflection instrumentation

我正试图在我的一个实体(com.xxx.entity.Order)中检测一个方法:

private String getLookupMethodString() {
    return new StringBuilder(
            "public java.lang.String lookupCustomValue(java.lang.String fieldName) throws java.lang.IllegalAccessException, java.lang.reflect.InvocationTargetException, java.beans.IntrospectionException {").append(
            "java.lang.String mappingFieldName =  \"value1\";").append(
            "com.xxx.entity.CustomFieldValue cfv = (com.xxx.entity.CustomFieldValue) new java.beans.PropertyDescriptor(\"customFieldValue\", getClass()).getReadMethod().invoke(this);").append(
            "return (java.lang.String) new java.beans.PropertyDescriptor(mappingFieldName, com.xxx.entity.CustomFieldValue.class).getReadMethod().invoke(cfv);}").toString();
}

public byte[] transform(ClassLoader clazzLoader, String className, Class<?> clazz, ProtectionDomain arg3, byte[] rawBytes) throws IllegalClassFormatException {
    CtClass cl = pool.makeClass(new java.io.ByteArrayInputStream(rawBytes));
    String lookupMethodString = getLookupMethodString();
    CtMethod lookupMethod = CtMethod.make(lookupMethodString, cl); // Error encountered at this line.
    cl.addMethod(lookupMethod);
}

字段customFieldValue也已在此类中进行了检测,因此我使用反射来获取其值。我执行此操作时遇到的错误是:

[source error] invoke(com.xxx.entity.CustomFieldValue) not found in java.lang.reflect.Method

有人可以帮帮我吗?

1 个答案:

答案 0 :(得分:0)

让它工作,问题在于调用invoke方法。当试图用第二个参数调用invoke方法为null时,它工作。 (不太清楚为什么?)

return (java.lang.String) new java.beans.PropertyDescriptor(mappingFieldName, com.xxx.entity.CustomFieldValue.class).getReadMethod().invoke(cfv, null);}").toString();