我有一个kotlin类,其属性具有Java注释,但我无法通过Java反射访问这些注释:
class TestClass(@A var myProperty : String)
以下测试打印为null:
public class TestKotlinField {
@Retention(RetentionPolicy.RUNTIME)
public @interface A{}
@Test
public void test() throws NoSuchFieldException {
System.out.println(TestClass.class.getDeclaredField("myProperty").getAnnotation(A.class));
}
}
如何获得给定kotlin属性的注释?
答案 0 :(得分:5)
如另一个答案所述,您可能希望注释字段而不是属性。但是,如果您确实需要对属性进行注释,可以通过Kotlin反射找到注释:
Field field = TestClass.class.getDeclaredField("field");
KProperty<?> property = ReflectJvmMapping.getKotlinProperty(f);
System.out.println(property.getAnnotations());
答案 1 :(得分:4)
当您注释属性或主构造函数参数时,有多个Java元素是从相应的Kotlin元素生成的,因此生成的Java字节码中的注释有多个可能的位置。
在这种情况下,您需要注释该字段,因此您的属性声明应如下所示:
@field:A
你的构造函数看起来像:
TestClass(@field:A myProperty : String)