public interface SynthesizedAggregateAnnotation extends AggregateAnnotation, Hierarchical, AnnotationSynthesizer, AnnotationAttributeValueProvider
表示基于特定规则聚合,将一组注解聚合而来的注解对象, 该注解对象允许根据一定规则“合成”一些跟原始注解属性不一样合成注解。
合成注解一般被用于处理类层级结果中具有直接或间接关联的注解对象,
当实例被创建时,会获取到这些注解对象,并使用SynthesizedAnnotationSelector
对类型相同的注解进行过滤,
并最终得到类型不重复的有效注解对象。这些有效注解将被包装为SynthesizedAnnotation
,
然后最终用于“合成”一个SynthesizedAggregateAnnotation
。
SynthesizedAnnotationSelector
是合成注解生命周期中的第一个钩子,
自定义选择器以拦截原始注解被扫描的过程。
当合成注解完成对待合成注解的扫描,并完成了必要属性的加载后,
将会按顺序依次调用SynthesizedAnnotationPostProcessor
,
注解后置处理器允许用于对完成注解的待合成注解进行二次调整,
该钩子一般用于根据Link
注解对属性进行调整。
SynthesizedAnnotationPostProcessor
是合成注解生命周期中的第二个钩子,
自定义后置处理器以拦截原始在转为待合成注解后的初始化过程。
合成注解允许通过AnnotationSynthesizer.synthesize(Class)
合成一个指定的注解对象,
该方法返回的注解对象可能是原始的注解对象,也有可能通过动态代理的方式生成,
该对象实例的属性不一定来自对象本身,而是来自于经过SynthesizedAnnotationAttributeProcessor
处理后的、用于合成当前实例的全部关联注解的相关属性。
SynthesizedAnnotationAttributeProcessor
是合成注解生命周期中的第三个钩子,
自定义属性处理器以拦截合成注解的取值过程。
Hierarchical.Selector
DEFAULT_HIERARCHICAL_COMPARATOR
Modifier and Type | Method and Description |
---|---|
default Class<? extends Annotation> |
annotationType()
获取当前的注解类型
|
<T extends Annotation> |
getAnnotation(Class<T> annotationType)
获取在聚合中存在的指定注解对象
|
SynthesizedAnnotationAttributeProcessor |
getAnnotationAttributeProcessor()
获取合成注解属性处理器
|
Object |
getAttributeValue(String attributeName,
Class<?> attributeType)
从聚合中获取指定类型的属性值
|
default int |
getHorizontalDistance()
距离
Hierarchical.getRoot() 返回值的水平距离,
默认聚合注解即为根对象,因此返回0 |
default int |
getVerticalDistance()
距离
Hierarchical.getRoot() 返回值的垂直距离,
默认聚合注解即为根对象,因此返回0 |
getAnnotations, isAnnotationPresent
equals, hashCode, toString
compareTo, getRoot
getAllSynthesizedAnnotation, getAnnotationPostProcessors, getAnnotationSelector, getSource, getSynthesizedAnnotation, synthesize
default int getVerticalDistance()
Hierarchical.getRoot()
返回值的垂直距离,
默认聚合注解即为根对象,因此返回0getVerticalDistance
in interface Hierarchical
Hierarchical.getRoot()
返回值的水平距离,default int getHorizontalDistance()
Hierarchical.getRoot()
返回值的水平距离,
默认聚合注解即为根对象,因此返回0getHorizontalDistance
in interface Hierarchical
Hierarchical.getRoot()
返回值的水平距离,<T extends Annotation> T getAnnotation(Class<T> annotationType)
T
- 注解类型annotationType
- 注解类型SynthesizedAnnotationAttributeProcessor getAnnotationAttributeProcessor()
default Class<? extends Annotation> annotationType()
annotationType
in interface Annotation
Object getAttributeValue(String attributeName, Class<?> attributeType)
getAttributeValue
in interface AnnotationAttributeValueProvider
attributeName
- 属性名称attributeType
- 属性类型Copyright © 2024. All rights reserved.