1

エンティティ (com.xxx.entity.Order) の 1 つでメソッドを計測しようとしています。

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

誰かがこれで私を助けてくれますか?

4

1 に答える 1

0

問題はinvokeメソッドの呼び出しにありました。2番目の引数をnullにしてinvokeメソッドを呼び出そうとすると、うまくいきました。(理由はよくわかりませんか?)

return (java.lang.String) new java.beans.PropertyDescriptor(mappingFieldName, com.xxx.entity.CustomFieldValue.class).getReadMethod().invoke(cfv, null);}").toString();
于 2013-04-01T17:18:57.687 に答える