java注解@Interface与Annotation 财富值96?
我有一个对象被@Configuration注解,那我怎么知道它还是被Component注解的?
傅子悦 2022-09-14 06:19 开发者_如何学编程
没听懂
哇考考2817 开发者_JAVA技巧 2022-09-14 06:23
@interface
是声明注解的关键字(与class/interface
一样)
qkoufu8929 2022-09-14 06:28 开发者_JS百科
Annotation
也可以获取自身的注解。
lvqingan 2022-09-14 06:33 开发者_高级运维
注:Meta-Annotations
并不是Annotation
的原生功能,只是在spring
中实现了这种机制。如果单纯的使用原生的Annotation
则需要自己解析Meta-Annotations
实现相应的功能才行。
巴西棕 开发者_如何学Python 2022-09-14 06:34
obj.getClass().getAnnotation(Configuration.class).getClass() == Configuration.class
引用不同结果为false
是正常情况。可以使用这种判断obj.getClass().getAnnotation(Configuration.class).getClass().getName().equals(Configuration.class.getName())
精彩评论