繁体   English   中英

Spring Framework AliasFor annotation dilema

[英]Spring Framework AliasFor annotation dilema

我正在使用spring boot(1.3.4.RELEASE)并对4.2中引入的新@AliasFor注释弹簧框架有疑问

请考虑以下注释:

视图

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Component
public @interface View {
    String name() default "view";
}

综合

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@View
public @interface Composite {
    @AliasFor(annotation = View.class, attribute = "name")
    String value() default "composite";
}

然后,我们按如下方式注释一个简单的类

@Composite(value = "model")
public class Model {
}

运行以下代码时

ConfigurableApplicationContext context = SpringApplication.run(App.class, args);
String[] beanNames = context.getBeanNamesForAnnotation(View.class);
for (String beanName : beanNames) {
    View annotationOnBean = context.findAnnotationOnBean(beanName, View.class);
    System.out.println(annotationOnBean.name());
}

我期待输出是模型 ,但它的观点

根据我的理解,不应该@AliasFor (除其他外)允许你覆盖元注释中的属性(在这种情况下是@View )? 有人可以向我解释我做错了什么吗? 谢谢

看一下@AliasFor的文档,您将在使用注释的要求中看到这一点:

与Java中的任何注释一样,仅仅存在@AliasFor就不会强制执行别名语义。

因此,尝试从bean中提取@View注释不会按预期工作。 此注释确实存在于bean类中,但其属性未显式设置,因此无法以传统方式检索它们。 Spring提供了一些用于处理元注释的实用程序类,例如这些。 在这种情况下,最好的选择是使用AnnotatedElementUtils

ConfigurableApplicationContext context = SpringApplication.run(App.class, args);
String[] beanNames = context.getBeanNamesForAnnotation(View.class);
for (String beanName : beanNames) {
    Object bean = context.getBean(beanName);
    View annotationOnBean = AnnotatedElementUtils.findMergedAnnotation(bean, View.class);
    System.out.println(annotationOnBean.name());
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM