2023-09-16
原文作者:王伟王胖胖 原文地址: https://blog.csdn.net/wangwei19871103/article/details/105326695

初始化流程图

202309162318280781.png

@EnableTransactionManagement做了什么

我们新来看下这个注解吧,可以看到他也有代理方式proxyTargetClass,默认falseJDK动态代理,还有AdviceMode,这个就是后面创建那种类型的Advice,默认是代理,这个后面会有看到,其实这个跟AOP注解的类似,也会import一个类TransactionManagementConfigurationSelector

    @Target(ElementType.TYPE)
    @Retention(RetentionPolicy.RUNTIME)
    @Documented
    @Import(TransactionManagementConfigurationSelector.class)
    public @interface EnableTransactionManagement {
    
    
    	boolean proxyTargetClass() default false;
    
    
    	AdviceMode mode() default AdviceMode.PROXY;
    
    
    	int order() default Ordered.LOWEST_PRECEDENCE;
    
    }

TransactionManagementConfigurationSelector

这个AdviceModeImportSelector是实现了ImportSelector,我们前面讲过,这个是可以import类名数组的。

202309162318288052.png

AdviceModeImportSelector的selectImports

主要是获取属性,然后传给TransactionManagementConfigurationSelectorselectImports

202309162318292463.png

TransactionManagementConfigurationSelector的selectImports

这里就是AdviceMode的用处啦,默认是用代理,另外一个就是ASPECTJ,我们主要讲代理。

202309162318300704.png

AutoProxyRegistrar注册AOP处理器

这个类型前面讲过,解析到的时候会被实例化,加载bean定义的时候调用registerBeanDefinitions方法。

202309162318306015.png

registerBeanDefinitions

会注册AOP处理器InfrastructureAdvisorAutoProxyCreator

202309162318309886.png

202309162318315547.png

ProxyTransactionManagementConfiguration代理事务配置

主要是注册事务需要用的一些类,而且Role=ROLE_INFRASTRUCTURE都是属于内部级别的。

BeanFactoryTransactionAttributeSourceAdvisor事务属性通知器

里面存放事务注解的方法相关的属性。

202309162318320788.png

TransactionAttributeSource事务属性源

就是事务注解的一些属性,也用来解析事务注解属性。

202309162318325809.png

TransactionInterceptor事务拦截器

事务的方法拦截器,实现了方法拦截器MethodInterceptor

2023091623183301210.png

TransactionalEventListenerFactory事务事件监听工厂

可以为特定的方法创建事务事件监听器,实现了EventListenerFactory接口。

2023091623183362111.png

基本就这些东西,后面看他们是怎么作用的吧。

好了,今天就到这里了,希望对学习理解有帮助,大神看见勿喷,仅为自己的学习理解,能力有限,请多包涵。

阅读全文