java注解@Interface与Annotation?
@Component
只是@Configuration开发者_如何学C
的注解声明,并不表示@Configuration
就是@Component
类型
于小雨yxy 开发者_StackOverflow 2022-07-01 19:40
注:Meta-Annotations
并不是Annotation
的原生功能,只是在spring
中实现了这种机制。如果单纯的使用原生的Annotation
则需要自己解析Meta-Annotations
实现相应的功能才行。
tianyafandy 开发者_StackOverflow中文版 2022-07-01 19:42
我有一个对象被@Configuration注解,那我怎么知道它还是被Component注解的?
159****7889 开发者_运维问答 2022-07-01 19:46
Annotation
也可以获取自身的注解。
无料丶 开发者_如何转开发 2022-07-01 19:52
没听懂
回忆丶往事_116 2022-07-01 19:52
@interface
是声明开发者_StackOverflow中文版注解的关键字(与class/interface
一样)
精彩评论