EnableAspectJAutoProxy注解干了什么
这个注解是开启AOP代理的关键,他内部的属性其实并不是开启的关键,proxyTargetClass
只是能决定要不要用CGLIB
而已。真正决定能进行代理的是AspectJAutoProxyRegistrar.class
。
AspectJAutoProxyRegistrar代理注册器
他就是个ImportBeanDefinitionRegistrar
扩展,前面我们有讲过,可以注册一个bean
定义。
class AspectJAutoProxyRegistrar implements ImportBeanDefinitionRegistrar {
/**
* Register, escalate, and configure the AspectJ auto proxy creator based on the value
* of the @{@link EnableAspectJAutoProxy#proxyTargetClass()} attribute on the importing
* {@code @Configuration} class.
*/
@Override
public void registerBeanDefinitions(
AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
AopConfigUtils.registerAspectJAnnotationAutoProxyCreatorIfNecessary(registry);
AnnotationAttributes enableAspectJAutoProxy =
AnnotationConfigUtils.attributesFor(importingClassMetadata, EnableAspectJAutoProxy.class);
if (enableAspectJAutoProxy != null) {
if (enableAspectJAutoProxy.getBoolean("proxyTargetClass")) {
AopConfigUtils.forceAutoProxyCreatorToUseClassProxying(registry);
}
if (enableAspectJAutoProxy.getBoolean("exposeProxy")) {
AopConfigUtils.forceAutoProxyCreatorToExposeProxy(registry);
}
}
}
}
那什么时候注册进去的呢,其实前面也讲过,在配置类解析,验证后,进行bean
定义加载的时候注册进去的,我们稍微回顾下好了。
处理配置类
我的配置类:
@Configuration
@EnableAspectJAutoProxy
public class MyConfig {
}
解析配置类
ConfigurationClassPostProcessor
的processConfigBeanDefinitions
方法。
ConfigurationClassParser
的doProcessConfigurationClass
中:
首先getImports
会将注释以及父注释中的Import
注解的值全部加载进来:
于是把AspectJAutoProxyRegistrar
给找出来了。
然后在processImports
中进行ImportBeanDefinitionRegistrar
类型处理。
然后进行了实例化,然后放入了ConfigurationClass
的importBeanDefinitionRegistrars
中,准备后面加载bean
定义的时候用。
加载bean定义
ConfigurationClassBeanDefinitionReader
的loadBeanDefinitionsForConfigurationClass
最后一行:
就是调用ImportBeanDefinitionRegistrar
的registerBeanDefinitions
方法:
registerBeanDefinitions
其实就是创建了AnnotationAwareAspectJAutoProxyCreator
的bean
定义,然后设置了属性。
@Override
public void registerBeanDefinitions(
AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
AopConfigUtils.registerAspectJAnnotationAutoProxyCreatorIfNecessary(registry);
AnnotationAttributes enableAspectJAutoProxy =
AnnotationConfigUtils.attributesFor(importingClassMetadata, EnableAspectJAutoProxy.class);
if (enableAspectJAutoProxy != null) {
if (enableAspectJAutoProxy.getBoolean("proxyTargetClass")) {
AopConfigUtils.forceAutoProxyCreatorToUseClassProxying(registry);
}
if (enableAspectJAutoProxy.getBoolean("exposeProxy")) {
AopConfigUtils.forceAutoProxyCreatorToExposeProxy(registry);
}
}
}
内部就是创建了bean定义并注册:
下次讲AnnotationAwareAspectJAutoProxyCreator
是什么。
好了,今天就到这里了,希望对学习理解有帮助,大神看见勿喷,仅为自己的学习理解,能力有限,请多包涵。
Java 面试宝典是大明哥全力打造的 Java 精品面试题,它是一份靠谱、强大、详细、经典的 Java 后端面试宝典。它不仅仅只是一道道面试题,而是一套完整的 Java 知识体系,一套你 Java 知识点的扫盲贴。
它的内容包括:
- 大厂真题:Java 面试宝典里面的题目都是最近几年的高频的大厂面试真题。
- 原创内容:Java 面试宝典内容全部都是大明哥原创,内容全面且通俗易懂,回答部分可以直接作为面试回答内容。
- 持续更新:一次购买,永久有效。大明哥会持续更新 3+ 年,累计更新 1000+,宝典会不断迭代更新,保证最新、最全面。
- 覆盖全面:本宝典累计更新 1000+,从 Java 入门到 Java 架构的高频面试题,实现 360° 全覆盖。
- 不止面试:内容包含面试题解析、内容详解、知识扩展,它不仅仅只是一份面试题,更是一套完整的 Java 知识体系。
- 宝典详情:https://www.yuque.com/chenssy/sike-java/xvlo920axlp7sf4k
- 宝典总览:https://www.yuque.com/chenssy/sike-java/yogsehzntzgp4ly1
- 宝典进展:https://www.yuque.com/chenssy/sike-java/en9ned7loo47z5aw
目前 Java 面试宝典累计更新 400+ 道,总字数 42w+。大明哥还在持续更新中,下图是大明哥在 2024-12 月份的更新情况:
想了解详情的小伙伴,扫描下面二维码加大明哥微信【daming091】咨询
同时,大明哥也整理一套目前市面最常见的热点面试题。微信搜[大明哥聊 Java]或扫描下方二维码关注大明哥的原创公众号[大明哥聊 Java] ,回复【面试题】 即可免费领取。