在Java中,通过反射可以获取属性上的注解。以下是获取属性上注解的步骤:
getDeclaredField()
方法获取属性对象。getAnnotation()
方法获取属性上的注解对象。下面是一个示例代码:
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation {
String value();
}
class MyClass {
@MyAnnotation("示例注解")
private String myField;
public String getMyField() {
return myField;
}
}
public class Main {
public static void main(String[] args) throws NoSuchFieldException {
MyClass obj = new MyClass();
// 获取属性对象
Class<?> cls = obj.getClass();
Field field = cls.getDeclaredField("myField");
// 获取属性上的注解对象
MyAnnotation annotation = field.getAnnotation(MyAnnotation.class);
System.out.println(annotation.value());
}
}
输出结果为:“示例注解”,表示成功获取到属性上的注解。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>