【springboot】为何不使用@EnableTransactionManagement就能使用事务?

前言:

在Springboot项目开发时,假如:公司项目比较多,从事开发的同学也会相应的比较多,如果公司没有统一的开发规范,我们使用的技术就会花里胡哨,不知道看到本篇博客的您,是否有所感想,比如下面这个案例:

package com.zcw;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.transaction.annotation.EnableTransactionManagement;
import tk.mybatis.spring.annotation.MapperScan;

/**
 * @program: zcw-foodie-dev
 * @description:
 * @author: Zhaocunwei
 * @create: 2020-05-01 22:37
 **/
@SpringBootApplication
@MapperScan(basePackages = "com.zcw.my.mapper")
@EnableTransactionManagement
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class,args);
    }
}



有的项目就会使用如图所示在事务使用的时候会在我们的启动类上面添加@EnableTransactionManagement注解,有的项目组直接使用 @Transactional 添加一些属性,而不在启动类上面添加@EnableTransactionManagement注解为什么呢?不知道您是否考虑过此问题,下面我们来进行讨论此问题是为什么?
【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第1张图片
进入源代码我们查看,其实它是一个接口,其实它的作用就是开启事务管理的,查看启动类上@SpringBootApplication的源代码
【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第2张图片

查看启动类的组合注解,进行查询答案:

【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第3张图片
上面标红的注解是我们的自动装配的注解:我们进入这个注解的源代码,去查看它的选择器:
【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第4张图片
这个注解是根据其类中的属性,进行自动装配,我们需要进入其源代码:
【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第5张图片

  • 找到自动获得的Entry,进入其源代码:
    【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第6张图片
    【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第7张图片
    【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第8张图片

通过上面的截图标红的位置,spring.factories,这个文件,不知道大家是否熟悉,我们找到当前类,所在包的位置,查看它的META-INF文件:
【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第9张图片
【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第10张图片
【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第11张图片

踏破铁鞋无觅处,得来全不费工夫

进入此文件我们可以看到,事务的自动装配配置类,当Springboot容器启动的时候,首先会扫描此文件,会自动为我们加载事务相关信息。

点击查看源代码:
【springboot】为何不使用@EnableTransactionManagement就能使用事务?_第12张图片

这个开启事务的管理其实与我们今天所说的@EnableTransactionManagement源代码说的是一样的,所以此注解可加与不可加是没有问题的。

你可能感兴趣的:(Spring,#,SpringBoot)