不要眨眼!这次从Spring源码中学习带你查找自定义注解

文章详细解释了Spring框架中@AliasFor注解的工作原理,通过反射获取方法并分析其别名。作者还展示了如何使用AnnotatedElementUtils工具来查找带有特定注解的方法,如DockIngMessage。最后提及了@Bean和@Controller注解的查找方式及@AliasFor的实际应用。
摘要由CSDN通过智能技术生成

Class<? extends Annotation> annotation() default Annotation.class;

}

AliasFor这个注解很奇怪,value的别名是attribute,attribute的别名是value

那么它的行为在哪里被定义的呢?在AnnotationTypeMapping中我们可以找到答案

// 这里使用了AnnotationsScanner的getDeclaredAnnotation方法来获取所有的AliasFor注解的方法

// AnnotationsScanner 是spring中的非公开抽象类,在我们的代码中不能直接进行使用

// Spring中没有提供子类

private Map<Method, List> resolveAliasedForTargets() {

Map<Method, List> aliasedBy = new HashMap<>();

for (int i = 0; i < this.attributes.size(); i++) {

Method attribute = this.attributes.get(i);

AliasFor aliasFor = AnnotationsScanner.getDeclaredAnnotation(attribute, AliasFor.class);

if (aliasFor != null) {

Method target = resolveAliasTarget(attribute, aliasFor);

aliasedBy.computeIfAbsent(target, key -> new ArrayList<>()).add(attribute);

}

}

return Collections.unmodifiableMap(aliasedBy);

}

// 为了简洁,我将源代码中其余部分省略掉了,可以看到,这里使用用反射得到的Method的getAnnotation方法得到实例

private Method resolveAliasTarget(Method attribute, AliasFor aliasFor, boolean checkAliasPair) {

// … …

Method target = AttributeMethods.forAnnotationType(targetAnnotation).get(targetAttributeName);

// … …

if (isAliasPair(target) && checkAliasPair) {

AliasFor targetAliasFor = target.getAnnotation(AliasFor.class);

if (targetAliasFor != null) {

Method mirror = resolveAliasTarget(target, targetAliasFor, false);

if (!mirror.equals(attribute)) {

throw new AnnotationConfigurationException(String.format(

“%s must be declared as an @AliasFor %s, not %s.”,

StringUtils.capitalize(AttributeMethods.describe(target)),

AttributeMethods.describe(attribute), AttributeMethods.describe(mirror)));

}

}

}

return target;

}

通过学习@AliasFor,我们知道了可以通过先活动Method,再或得其修饰的注解的方法。

根据这样的方法,我们可以使用下面的代码,找到类DockingHandlers中所有被注解@DockIngMessage修饰的方法

// DockIngMessage 是自定义的注解

Method[] methods = DockingHandlers.class.getMethods();

for (Method method : methods) {

DockIngMessage dockIngMessage = method.getAnnotation(DockIngMessage.class);

if (dockIngMessage != null) {

System.out.println(dockIngMessage.name());

}

}

@Bean

=====

@Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})

@Retention(RetentionPolicy.RUNTIME)

@Documented

public @interface Bean {

@AliasFor(“name”)

String[] value() default {};

@AliasFor(“value”)

String[] name() default {};

@Deprecated

Autowire autowire() default Autowire.NO;

boolean autowireCandidate() default true;

String initMethod() default “”;

String destroyMethod() default AbstractBeanDefinition.INFER_METHOD;

}

@Bean注解是Spring中用得比较广泛的注解之一,来看看Spring源码中是怎么查找@Bean注解的

public static boolean isBeanAnnotated(Method method) {

return AnnotatedElementUtils.hasAnnotation(method, Bean.class);

}

使用了AnnotatedElementUtils工具类,那么我们就可以把上面的代码改造一下

Method[] methods = DockingHandlers.class.getMethods();

for (Method method : methods) {

if (AnnotatedElementUtils.hasAnnotation(method, DockIngMessage.class)) {

DockIngMessage dockIngMessage = AnnotatedElementUtils.getMergedAnnotation(method,DockIngMessage.class);

System.out.println(dockIngMessage.name());

}

}

// 相比于判断 != null , 这样的写法相对优雅了许多

至于Bean到底是怎么生效的,我们需要留到以后研究Spring容器的时候再讨论

@Controller

===========

@Target({ElementType.TYPE})

@Retention(RetentionPolicy.RUNTIME)

@Documented

@Component

public @interface Controller {

总结

以上是字节二面的一些问题,面完之后其实挺后悔的,没有提前把各个知识点都复习到位。现在重新好好复习手上的面试大全资料(含JAVA、MySQL、算法、Redis、JVM、架构、中间件、RabbitMQ、设计模式、Spring等),现在起闭关修炼半个月,争取早日上岸!!!

下面给大家分享下我的面试大全资料

  • 第一份是我的后端JAVA面试大全

image.png

后端JAVA面试大全

  • 第二份是MySQL+Redis学习笔记+算法+JVM+JAVA核心知识整理

字节二面拜倒在“数据库”脚下,闭关修炼半个月,我还有机会吗?

MySQL+Redis学习笔记算法+JVM+JAVA核心知识整理

  • 第三份是Spring全家桶资料

字节二面拜倒在“数据库”脚下,闭关修炼半个月,我还有机会吗?

MySQL+Redis学习笔记算法+JVM+JAVA核心知识整理

.(img-P1aDgYyU-1714552757753)]

后端JAVA面试大全

  • 第二份是MySQL+Redis学习笔记+算法+JVM+JAVA核心知识整理

[外链图片转存中…(img-uFqWxhK8-1714552757754)]

MySQL+Redis学习笔记算法+JVM+JAVA核心知识整理

  • 第三份是Spring全家桶资料

[外链图片转存中…(img-a7pLz1OV-1714552757754)]

MySQL+Redis学习笔记算法+JVM+JAVA核心知识整理

本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值