• Spring声明式事务管理(基于Annotation注解方式实现)


    在 Spring 中,除了使用基于 XML 的方式可以实现声明式事务管理以外,还可以通过 Annotation 注解的方式实现声明式事务管理。

    使用 Annotation 的方式非常简单,只需要在项目中做两件事,具体如下。

    1)在 Spring 容器中注册驱动,代码如下所示:

    2)在需要使用事务的业务类或者方法中添加注解 @Transactional,并配置 @Transactional 的参数。关于 @Transactional 的参数如图 1 所示。


    图 1  @Transactional参数列表


    下面通过修改《 Spring基于XML实现事务管理》教程中银行转账的案例讲解如何使用 Annotation 注解的方式实现 Spring 声明式事务管理。

    1. 注册驱动

    修改 Spring 配置文件 applicationContext.xml,修改后如下所示。

    1. <beans xmlns="http://www.springframework.org/schema/beans"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xmlns:context="http://www.springframework.org/schema/context"
    4. xmlns:tx="http://www.springframework.org/schema/tx"
    5. xmlns:aop="http://www.springframework.org/schema/aop"
    6. xsi:schemaLocation="http://www.springframework.org/schema/beans
    7. http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
    8. http://www.springframework.org/schema/context
    9. http://www.springframework.org/schema/context/spring-context.xsd
    10. http://www.springframework.org/schema/tx
    11. http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
    12. http://www.springframework.org/schema/aop
    13. http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
    14. <context:property-placeholder location="classpath:c3p0-db.properties" />
    15. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
    16. <property name="driverClass" value="${jdbc.driverClass}" />
    17. <property name="jdbcUrl" value="${jdbc.jdbcUrl}" />
    18. <property name="user" value="${jdbc.user}" />
    19. <property name="password" value="${jdbc.password}" />
    20. bean>
    21. <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
    22. <property name="dataSource" ref="dataSource" />
    23. bean>
    24. <bean id="accountDao" class="com.mengma.dao.impl.AccountDaoImpl">
    25. <property name="jdbcTemplate" ref="jdbcTemplate" />
    26. bean>
    27. <bean id="accountService" class="com.mengma.service.impl.AccountServiceImpl">
    28. <property name="accountDao" ref="accountDao" />
    29. bean>
    30. <bean id="txManager"
    31. class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    32. <property name="dataSource" ref="dataSource" />
    33. bean>
    34. <tx:annotation-driven transaction-manager="txManager"/>
    35. beans>


    上述代码中可以看出,与原来的配置文件相比,这里只修改了事务管理器部分,新添加并注册了事务管理器的驱动。

    需要注意的是,在学习 AOP 注解方式开发时,需要在配置文件中开启注解处理器,指定扫描哪些包下的注解,这里没有开启注解处理器是因为在第 33~35 行手动配置了 AccountServiceImpl,而 @Transactional 注解就配置在该类中,所以会直接生效。

    2. 添加 @Transactional 注解

    修改 AccountServiceImpl,在文件中添加 @Transactional 注解及参数,添加后如下所示。

    1. package com.mengma.service.impl;
    2. import org.springframework.transaction.annotation.Isolation;
    3. import org.springframework.transaction.annotation.Propagation;
    4. import org.springframework.transaction.annotation.Transactional;
    5. import com.mengma.dao.AccountDao;
    6. @Transactional(propagation = Propagation.REQUIRED, isolation = Isolation.DEFAULT, readOnly = false)
    7. public class AccountServiceImpl {
    8. private AccountDao accountDao;
    9. public void setAccountDao(AccountDao accountDao) {
    10. this.accountDao = accountDao;
    11. }
    12. public void transfer(String outUser, String inUser, int money) {
    13. this.accountDao.out(outUser, money);
    14. // 模拟断电
    15. int i = 1 / 0;
    16. this.accountDao.in(inUser, money);
    17. }
    18. }

    需要注意的是,在使用 @Transactional 注解时,参数之间用“,”进行分隔。

    使用 JUnit 测试再次运行 test() 方法时,控制台同样会输出如图 2 所示的异常信息,这说明使用基于 Annotation 注解的方式同样实现了 Spring 的声明式事务管理。如果注释掉模拟断电的代码进行测试,则转账操作可以正常完成。
     


    图 2  运行结果

  • 相关阅读:
    Python开发工具PyCharm使用教程:自定义 IDE
    Vue 卸载Better Scroll插件
    写小论文框架,该如何下手?
    非比较排序------计数排序
    【机器学习】线性分类【下】经典线性分类算法
    Vue 中 slot 是什么?作用?分类?如何实现?
    tx-前端笔试题记录
    Rafy 框架:领域控制器
    如何创建一个SpringBoot项目
    企业级智能客服知识库重磅更新,发布`v0.1.5`
  • 原文地址:https://blog.csdn.net/unbelievevc/article/details/126358416