springboot项目如何开启事务? 针对这个问题,一部分小伙伴肯定回答的比较迅速,启动类上加上@EnableTransactionManagement注解,在需要事务支持的方法或者类或者接口的抽象方法或者接口类上加上@Transactional注解。这个回答没什么大问题,项目可以正常启动,事务支持也正常。但针对springboot项目,其实正常情况下是不需要在启动类上面加上@EnableTransactionManagement注解的。
原理 springboot项目可以不加@EnableTransactionManagement注解,是归功于springboot的自动配置功能。springboot旨在简化spring项目的配置,不管是基于注解的配置,还是以前的基于xml的配置,所以springboot项目在启动的时候会自动给我们加载很多的配置类,其中就有一个跟事务相关的自动配置类:
org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration
代码展示 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 package org.springframework.boot.autoconfigure.transaction;import java.util.stream.Collectors;import org.springframework.beans.factory.ObjectProvider;import org.springframework.boot.autoconfigure.AutoConfigureAfter;import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;import org.springframework.boot.autoconfigure.condition.ConditionalOnSingleCandidate;import org.springframework.boot.autoconfigure.data.neo4j.Neo4jDataAutoConfiguration;import org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration;import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration;import org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration;import org.springframework.boot.context.properties.EnableConfigurationProperties;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.transaction.PlatformTransactionManager;import org.springframework.transaction.ReactiveTransactionManager;import org.springframework.transaction.TransactionManager;import org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration;import org.springframework.transaction.annotation.EnableTransactionManagement;import org.springframework.transaction.reactive.TransactionalOperator;import org.springframework.transaction.support.TransactionOperations;import org.springframework.transaction.support.TransactionTemplate;@Configuration (proxyBeanMethods = false )@ConditionalOnClass (PlatformTransactionManager.class)@AutoConfigureAfter ({ JtaAutoConfiguration.class, HibernateJpaAutoConfiguration.class, DataSourceTransactionManagerAutoConfiguration.class, Neo4jDataAutoConfiguration.class }) @EnableConfigurationProperties (TransactionProperties.class)public class TransactionAutoConfiguration { @Bean @ConditionalOnMissingBean public TransactionManagerCustomizers platformTransactionManagerCustomizers ( ObjectProvider<PlatformTransactionManagerCustomizer<?>> customizers) { return new TransactionManagerCustomizers(customizers.orderedStream().collect(Collectors.toList())); } @Bean @ConditionalOnMissingBean @ConditionalOnSingleCandidate (ReactiveTransactionManager.class) public TransactionalOperator transactionalOperator (ReactiveTransactionManager transactionManager) { return TransactionalOperator.create(transactionManager); } @Configuration (proxyBeanMethods = false ) @ConditionalOnSingleCandidate (PlatformTransactionManager.class) public static class TransactionTemplateConfiguration { @Bean @ConditionalOnMissingBean (TransactionOperations.class) public TransactionTemplate transactionTemplate (PlatformTransactionManager transactionManager) { return new TransactionTemplate(transactionManager); } } @Configuration (proxyBeanMethods = false ) @ConditionalOnBean (TransactionManager.class) @ConditionalOnMissingBean (AbstractTransactionManagementConfiguration.class) public static class EnableTransactionManagementConfiguration { @Configuration (proxyBeanMethods = false ) @EnableTransactionManagement (proxyTargetClass = false ) @ConditionalOnProperty (prefix = "spring.aop" , name = "proxy-target-class" , havingValue = "false" , matchIfMissing = false ) public static class JdkDynamicAutoProxyConfiguration { } @Configuration (proxyBeanMethods = false ) @EnableTransactionManagement (proxyTargetClass = true ) @ConditionalOnProperty (prefix = "spring.aop" , name = "proxy-target-class" , havingValue = "true" , matchIfMissing = true ) public static class CglibAutoProxyConfiguration { } } }
通过上述代码可以看到,org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration配置类默认会生效,且该类上有@EnableTransactionManagement(proxyTargetClass = true)注解修饰,使得对事务的支持生效。
总结
springboot项目不需要手动在启动类上加@EnableTransactionManagement注解,TransactionAutoConfiguration自动配置类中已有事务自动配置功能。
@EnableTransactionManagement + @Transactional组合对更适用于纯spring项目。