gpt4 book ai didi

java - 如何获取注解上方的注解

转载 作者:行者123 更新时间:2023-11-29 04:07:45 26 4
gpt4 key购买 nike

我给方法加了一个注解,这个注解里面还有其他的注解。当我尝试通过方法获取上面的注释时,不幸的是,返回始终为空。我想知道为什么?

这是我定义的方法

@ApiTest
public void add() {
}

这是我定义的注解。

@ValueName("hello word")
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ApiTest {

}
////////////////////////////////////////////////////////
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ValueName {
String value() default "";
}

当我尝试获取@ValueName 时,结果总是返回null

Class<?> testApi = Class.forName("com.huawei.netty.TestApi");
Method add = testApi.getMethod("add", null);
ApiTest apiTest = add.getDeclaredAnnotation(ApiTest.class);
ValueName valueName = apiTest.getClass().getDeclaredAnnotation(ValueName.class);
if (valueName != null) {
System.out.println(valueName.annotationType());
}

但是这种方式可以获得

Class<?> apiTest = Class.forName("com.huawei.netty.ApiTest");
ValueName valueName = apiTest.getDeclaredAnnotation(ValueName.class);
if (valueName != null) {
System.out.println(valueName.value());
}

我能知道这是为什么吗?

最佳答案

你应该使用 Annotation#annotationType()获取注释实例的类,而不是 Object#getClass()。后一种方法不会返回您认为的类。尝试以下操作:

MetaAnnotation.java

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface MetaAnnotation {

String value();

}

CustomAnnotation.java

@MetaAnnotation("Hello, World!")
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface CustomAnnotation {}

主.java

@CustomAnnotation
public final class Main {

public static void main(String[] args) {
CustomAnnotation ca = Main.class.getAnnotation(CustomAnnotation.class);
MetaAnnotation ma = ca.annotationType().getAnnotation(MetaAnnotation.class);

System.out.println("CustomAnnotation#getClass() = " + ca.getClass());
System.out.println("CustomAnnotation#annotationType() = " + ca.annotationType());
System.out.println("MetaAnnotation#value() = " + ma.value());
}

}

当我使用 OpenJDK 12.0.1 运行上面的代码时,我得到以下输出:

CustomAnnotation#getClass()       = class com.sun.proxy.$Proxy1
CustomAnnotation#annotationType() = interface CustomAnnotation
MetaAnnotation#value() = Hello, World!

如您所见,注解类实例是一个代理类,它不会有您正在查询的注解。

关于java - 如何获取注解上方的注解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57238406/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com