当前位置:   article > 正文

Spring事务注解@Transactional原理解析_spring transactional注解原理

spring transactional注解原理

https://zhuanlan.zhihu.com/p/141102728

事务管理是应用系统开发中必不可少的一部分,而Spring则为事务管理提供了丰富的功能支持.

在讲解其实现原理前,我们先来看看使用Spring的事务管理机制给我们带来的好处:它极大减少了样板式代码,提高了代码的清晰性和可维护性.我这样讲你可能没什么感觉,下面我通过原生的jdbc事务处理代码例子,以及Spring的事务处理代码例子来突出说明这个好处.

先建立三张表,表字段如下:

需求是要往这三张表保存数据,保存顺序是country,city,category.其中前两张表要求是原子操作,后一张表是另一个原子操作,即后一张表操作失败不需回滚前两张表的数据.

为了实现这个要求,原生的jdbc事务处理代码实现是这样的(可以看到大量的样板式代码):

  1. @Slf4j
  2. @Service
  3. public class AddressServiceImpl implements AddressService {
  4. @Autowired
  5. private DataSource dataSource;
  6. @SneakyThrows
  7. @Override
  8. public String transactionOriginalResearch() {
  9. try (Connection conn = dataSource.getConnection()) {
  10. conn.setAutoCommit(false);
  11. short countryId;
  12. PreparedStatement preparedStatement = null;
  13. ResultSet resultSet = null;
  14. try {
  15. // 其他业务逻辑处理
  16. // ......
  17. preparedStatement = conn.prepareStatement("insert into country(country) values (?)", Statement.RETURN_GENERATED_KEYS);
  18. preparedStatement.setString(1, "中国");
  19. preparedStatement.executeUpdate();
  20. resultSet = preparedStatement.getGeneratedKeys();
  21. resultSet.next();
  22. countryId = resultSet.getShort(1);
  23. } catch (Exception e) {
  24. conn.rollback();
  25. throw new RuntimeException(e);
  26. } finally {
  27. if (preparedStatement != null) {
  28. preparedStatement.close();
  29. }
  30. if (resultSet != null) {
  31. resultSet.close();
  32. }
  33. }
  34. short cityId;
  35. try {
  36. // 其他业务逻辑处理
  37. // ......
  38. preparedStatement = conn.prepareStatement("insert into city(city, country_id) values (?,?)", Statement.RETURN_GENERATED_KEYS);
  39. preparedStatement.setString(1, "北京");
  40. preparedStatement.setShort(2, countryId);
  41. preparedStatement.executeUpdate();
  42. resultSet = preparedStatement.getGeneratedKeys();
  43. resultSet.next();
  44. cityId = resultSet.getShort(1);
  45. } catch (Exception e) {
  46. conn.rollback();
  47. throw new RuntimeException(e);
  48. } finally {
  49. if (preparedStatement != null) {
  50. preparedStatement.close();
  51. }
  52. if (resultSet != null) {
  53. resultSet.close();
  54. }
  55. }
  56. // country表和city表均保存成功,此处设置个Savepoint(保存点)
  57. Savepoint savepointCity = conn.setSavepoint("city");
  58. int affect;
  59. try {
  60. // 其他业务逻辑处理
  61. // ......
  62. preparedStatement = conn.prepareStatement("insert into category(name) values (?)");
  63. preparedStatement.setString(1, "分类名称");
  64. affect = preparedStatement.executeUpdate();
  65. if (true) {
  66. throw new RuntimeException("模拟抛出异常");
  67. }
  68. conn.commit();
  69. } catch (Exception e) {
  70. conn.rollback(savepointCity);
  71. throw new RuntimeException(e);
  72. } finally {
  73. if (preparedStatement != null) {
  74. preparedStatement.close();
  75. }
  76. }
  77. return countryId + " " + cityId + " " + affect;
  78. }
  79. }
  80. }

可以看到,事务包含了复杂的语句,我们通过设置Savepoint(保存点)回滚到了事务中某个特殊的点,而不是回滚整个事务.

再来看使用Spring的声明式事务的代码实现:

  1. @Slf4j
  2. @Service
  3. public class AddressServiceImpl implements AddressService {
  4. @Autowired
  5. private JdbcTemplate jdbcTemplate;
  6. @Autowired
  7. private AddressHelper addressHelper;
  8. @Override
  9. @Transactional(timeout = 6000, rollbackFor = Exception.class)
  10. public String transactionResearch() {
  11. String res = addressHelper.save();
  12. // 其他业务逻辑处理
  13. // ......
  14. int affect = jdbcTemplate.update("insert into category(name) values (?)", "分类名称");
  15. if (true) {
  16. throw new RuntimeException("模拟抛出异常");
  17. }
  18. return res + " " + affect;
  19. }
  20. }
  21. @Component
  22. public class AddressHelper {
  23. @Autowired
  24. private JdbcTemplate jdbcTemplate;
  25. @Transactional(propagation = Propagation.REQUIRES_NEW, rollbackFor = Exception.class)
  26. public String save() {
  27. // 其他业务逻辑处理
  28. // ......
  29. GeneratedKeyHolder keyHolder = new GeneratedKeyHolder();
  30. jdbcTemplate.update(con -> {
  31. PreparedStatement preparedStatement = con.prepareStatement("insert into country(country) values (?)", Statement.RETURN_GENERATED_KEYS);
  32. preparedStatement.setString(1, "中国");
  33. return preparedStatement;
  34. }, keyHolder);
  35. short countryId = keyHolder.getKey().shortValue();
  36. // 其他业务逻辑处理
  37. // ......
  38. GeneratedKeyHolder keyHolder1 = new GeneratedKeyHolder();
  39. jdbcTemplate.update(con -> {
  40. PreparedStatement preparedStatement = con.prepareStatement("insert into city(city,country_id) values (?,?)", Statement.RETURN_GENERATED_KEYS);
  41. preparedStatement.setString(1, "北京");
  42. preparedStatement.setInt(2, countryId);
  43. return preparedStatement;
  44. }, keyHolder1);
  45. short cityId = keyHolder1.getKey().shortValue();
  46. return countryId + " " + cityId;
  47. }
  48. }

注意AddressHelper上的事务属性设置Propagation.REQUIRES_NEW.可以看到仅仅简单加上@Transactional注解,Spring就替我们完成了所有的事务操作.这样是不是就深刻感受到Spring带来的好处了.

另外Spring也提供了编程式事务,通过使用TransactionTemplate,这里不再赘述.

使用@Transactional有一些需要注意的地方:

  • Spring默认情况下会对(RuntimeException)及其子类来进行回滚,在遇见Exception及其子类的时候则不会进行回滚操作
  • @Transactional注解应该只被应用到public方法上,这是由Spring AOP的本质决定的

好,下面开始进入主题,我们知道@Transactional注解要生效的话,需配置@EnableTransactionManagement,不过如果是使用SpringBoot的话,就可以不需要了:

  1. @SpringBootApplication
  2. @EnableTransactionManagement // 这行注解其实可以不需要,在TransactionAutoConfiguration自动配置类里已经带有此注解
  3. public class SpringTransactionalApplication {
  4. public static void main(String[] args) {
  5. SpringApplication.run(SpringTransactionalApplication.class, args);
  6. }
  7. }

TransactionAutoConfiguration自动配置类定义了很多与事务处理相关的bean,其中与@Transactional注解息息相关的是这个类TransactionInterceptor.

每个带有@Transactional注解的方法都会创建一个切面,所有的事务处理逻辑就是由这个切面完成的,这个切面的具体实现就是TransactionInterceptor类.

注意,这个TransactionInterceptor是个单例对象,所有带有@Transactional注解的方法都会经由此对象代理(省略无关代码):

  1. public class TransactionInterceptor extends TransactionAspectSupport implements MethodInterceptor, Serializable {
  2. // ......
  3. @Override
  4. @Nullable
  5. public Object invoke(MethodInvocation invocation) throws Throwable {
  6. // Work out the target class: may be {@code null}.
  7. // The TransactionAttributeSource should be passed the target class
  8. // as well as the method, which may be from an interface.
  9. Class<?> targetClass = (invocation.getThis() != null ? AopUtils.getTargetClass(invocation.getThis()) : null);
  10. // Adapt to TransactionAspectSupport's invokeWithinTransaction...
  11. return invokeWithinTransaction(invocation.getMethod(), targetClass, invocation::proceed);
  12. }
  13. // ......
  14. }
  15. public abstract class TransactionAspectSupport implements BeanFactoryAware, InitializingBean {
  16. @Nullable
  17. protected Object invokeWithinTransaction(Method method, @Nullable Class<?> targetClass,
  18. final InvocationCallback invocation) throws Throwable {
  19. // ......
  20. // 这里TransactionAttributeSource对象保存了应用内所有方法上的@Transactional注解属性信息,利用Map来保存,其中
  21. // key由目标方法method对象+目标类targetClass对象组成,所以通过method+targetClass就能唯一找到目标方法上的@Transactional注解属性信息
  22. TransactionAttributeSource tas = getTransactionAttributeSource();
  23. // 这个TransactionAttribute对象就保存了目标方法@Transactional注解所有的属性配置,如timeout,propagation,readOnly等等,
  24. // 后续就利用这些属性完成对应的操作
  25. final TransactionAttribute txAttr = (tas != null ? tas.getTransactionAttribute(method, targetClass) : null);
  26. // ......
  27. TransactionInfo txInfo = createTransactionIfNecessary(ptm, txAttr, joinpointIdentification);
  28. Object retVal;
  29. try {
  30. // 这里最终会调用到目标方法
  31. retVal = invocation.proceedWithInvocation();
  32. } catch (Throwable ex) {
  33. // 目标方法抛出了异常,根据@Transactional注解属性配置决定是否需要回滚事务
  34. completeTransactionAfterThrowing(txInfo, ex);
  35. throw ex;
  36. }
  37. // ......
  38. // 目标方法正常执行完成,提交事务
  39. commitTransactionAfterReturning(txInfo);
  40. return retVal;
  41. }
  42. }

上面的completeTransactionAfterThrowing和commitTransactionAfterReturning方法最终也是使用的jdbc的Savepoint和Connection来完成回滚和提交,就如同我们使用原生的jdbc代码那样操作,具体的实现细节我就不展开了.关于原理解析就到这里.

@Transactional注解属性含义:

  • value:可选的限定描述符,指定使用的事务管理器
  • propagation:可选的事务传播行为设置
  • isolation: 可选的事务隔离级别设置
  • readOnly:读写或只读事务,默认读写
  • timeout:事务超时时间设置
  • rollbackFor:导致事务回滚的异常类数组
  • rollbackForClassName:导致事务回滚的异常类名字数组
  • oRollbackFor:不会导致事务回滚的异常类数组
  • noRollbackForClassName:不会导致事务回滚的异常类名字数组

重点关注propagation,isolation,面试常常问到.

propagation各属性值含义:

  • Propagation.REQUIRED:如果有事务,那么加入事务,没有的话新创建一个
  • Propagation.NOT_SUPPORTED:这个方法不开启事务
  • Propagation.REQUIREDS_NEW:不管是否存在事务,都创建一个新的事务,原来的挂起,新的执行完毕,继续执行老的事务
  • Propagation.MANDATORY:必须在一个已有的事务中执行,否则抛出异常
  • Propagation.NEVER:不能在一个事务中执行,就是当前必须没有事务,否则抛出异常
  • Propagation.SUPPORTS:若当前存在事务,则在事务中运行.否则以非事务形式运行
  • Propagation.NESTED:如果当前存在事务,则运行在一个嵌套的事务中,如果当前没有事务,则按照REQUIRED属性执行.它只对DataSourceTransactionManager事务管理器起效

关于Spring如何处理该属性参见AbstractPlatformTransactionManager类的getTransaction方法.

isolation各属性值含义:

  1. TransactionDefinition.ISOLATION_DEFAULT:这是默认值,表示使用底层数据库的默认隔离级别.
  2. TransactionDefinition.ISOLATION_READ_UNCOMMITTED:该隔离级别表示一个事务可以读取另一个事务修改但还没有提交的数据.该级别不能防止脏读,不可重复读和幻读,因此很少使用该隔离级别.比如PostreSQL实际上并没有此级别.
  3. TransactionDefinition.ISOLATION_READ_COMMITTED:该隔离级别表示一个事务只能读取另一个事务已经提交的数据.该级别可以防止脏读,这也是大多数情况下的推荐值.
  4. TransactionDefinition.ISOLATION_REPEATABLE_READ:该隔离级别表示一个事务在整个过程中可以多次重复执行某个查询,并且每次返回的记录都相同.该级别可以防止脏读和不可重复读.
  5. TransactionDefinition.ISOLATION_SERIALIZABLE:所有的事务依次逐个执行,这样事务之间就完全不可能产生干扰,也就是说,该级别可以防止脏读、不可重复读以及幻读.但是这将严重影响程序的性能,通常情况下也不会用到该级别.

源码github地址和gitee地址(代码同步):

https://github.com/jufeng98/java-master?github.com/jufeng98/java-master

https://gitee.com/jufeng9878/java-master?gitee.com/jufeng9878/java-master

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/525731
推荐阅读
相关标签
  

闽ICP备14008679号