您的位置:首页技术文章
文章详情页

java - 注解上的属性可以传递吗?

【字号: 日期:2024-02-12 11:55:19浏览:17作者:猪猪

问题描述

Spring里@Component有一个value属性可以设置,MyComponent的value可以传给@Component吗?

@Documented@Retention(RetentionPolicy.RUNTIME)@Target({ElementType.TYPE})@Component()public @interface MyComponent { String value() default '';}

问题解答

回答1:

这个比较麻烦,实现起来可以通过反射实现。

回答2:

注解貌似不支持继承

标签: java
相关文章: