• 07 Spring事务


    目录

    一、Spring事务_事务简介

    二、Spring事务_事务管理方案

    三、Spring事务_事务管理器

    四、Spring事务_事务控制的API

    五、Spring事务_事务的相关配置

    六、Spring事务_事务的传播行为

    七、Spring事务_事务的隔离级别

    八、Spring事务_注解配置声明式事务

    第一种:半注解半配置文件方式

    第二种:全注解方式(配置类方式)

    九、知识点整理:


    一、Spring事务_事务简介

     事务:不可分割的原子操作,即一系列的操作要么同时成功,要么同时失败。

    开发过程中,事务管理一般在 service 层, service 层中可能会操作多次数据库,这些操作是不可分割的。否则当程序报错时,可能会造 成数据异常

    如:张三给李四转账时,需要两次操作数据库:张三存款减少、李四存款增加。如果这两次数据库操作间出现异常,则会造成数据错误。
    项目结构:

     1.准备数据库

    1. CREATE DATABASE `spring` ;
    2. USE `spring`;
    3. DROP TABLE IF EXISTS `account`;
    4. CREATE TABLE `account` (
    5.  `id` int(11) NOT NULL AUTO_INCREMENT,
    6.  `username` varchar(255) DEFAULT NULL,
    7.  `balance` double DEFAULT NULL,
    8.  PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT
    9. CHARSET=utf8;
    10. insert  into
    11. `account`(`id`,`username`,`balance`)
    12. values (1,'张三',1000),(2,'李四',1000);

    2.创建Maven项目,引入依赖

    1. <dependencies>
    2. <dependency>
    3. <groupId>org.mybatisgroupId>
    4. <artifactId>mybatisartifactId>
    5. <version>3.5.7version>
    6. dependency>
    7. <dependency>
    8. <groupId>mysqlgroupId>
    9. <artifactId>mysql-connector-javaartifactId>
    10. <version>8.0.26version>
    11. dependency>
    12. <dependency>
    13. <groupId>org.aspectjgroupId>
    14. <artifactId>aspectjweaverartifactId>
    15. <version>1.8.7version>
    16. dependency>
    17. <dependency>
    18. <groupId>org.springframeworkgroupId>
    19. <artifactId>spring-contextartifactId>
    20. <version>5.3.13version>
    21. dependency>
    22. <dependency>
    23. <groupId>org.springframeworkgroupId>
    24. <artifactId>spring-txartifactId>
    25. <version>5.2.12.RELEASEversion>
    26. dependency>
    27. <dependency>
    28. <groupId>org.springframeworkgroupId>
    29. <artifactId>spring-jdbcartifactId>
    30. <version>5.2.12.RELEASEversion>
    31. dependency>
    32. <dependency>
    33. <groupId>org.mybatisgroupId>
    34. <artifactId>mybatis-springartifactId>
    35. <version>2.0.6version>
    36. dependency>
    37. <dependency>
    38. <groupId>com.alibabagroupId>
    39. <artifactId>druidartifactId>
    40. <version>1.2.8version>
    41. dependency>
    42. <dependency>
    43. <groupId>junitgroupId>
    44. <artifactId>junitartifactId>
    45. <version>4.12version>
    46. <scope>testscope>
    47. dependency>
    48. <dependency>
    49. <groupId>org.springframeworkgroupId>
    50. <artifactId>spring-testartifactId>
    51. <version>5.2.12.RELEASEversion>
    52. dependency>
    53. dependencies>

    3.创建配置文件applicationContext.xml

    1. <beans xmlns="http://www.springframework.org/schema/beans"
    2. xmlns:context="http://www.springframework.org/schema/context"
    3. xmlns:aop="http://www.springframework.org/schema/aop"
    4. xmlns:tx="http://www.springframework.org/schema/tx"
    5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    6. xmlns:comtext="http://www.springframework.org/schema/c"
    7. xsi:schemaLocation="http://www.springframework.org/schema/beans
    8. http://www.springframework.org/schema/beans/spring-beans.xsd
    9. http://www.springframework.org/schema/context
    10. http://www.springframework.org/schema/context/spring-context.xsd
    11. http://www.springframework.org/schema/aop
    12. http://www.springframework.org/schema/aop/spring-aop.xsd
    13. http://www.springframework.org/schema/tx
    14. http://www.springframework.org/schema/tx/spring-tx.xsd">
    15. <context:component-scan base-package="com.itbaizhan"/>
    16. <context:property-placeholder location="db.properties">context:property-placeholder>
    17. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
    18. <property name="driverClassName" value="${jdbc.driverClassName}">property>
    19. <property name="url" value="${jdbc.url}">property>
    20. <property name="username" value="${jdbc.username}">property>
    21. <property name="password" value="${jdbc.password}">property>
    22. bean>
    23. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    24. <property name="dataSource" ref="dataSource">property>
    25. bean>
    26. <bean id="mapperScanner" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    27. <property name="basePackage" value="com.itbaizhan.dao">property>
    28. bean>
    29. beans>

    4.在domain层编写实体类Account代码

    1. // 账户
    2. public class Account {
    3.    private int id; // 账号
    4.    private String username; // 用户名
    5.    private double balance; // 余额
    6.    
    7.    // 省略getter/setter/tostring/构造方法
    8. }

    5.在dao层编写AccountDao接口

    1. @Repository
    2. public interface AccountDao {
    3. // 根据id查找用户
    4. @Select("select * from account where id = #{id} ")
    5. Account findById(int id);
    6. // 修改用户
    7. @Update("update account set balance = #{balance} where id = #{id} ")
    8. void update(Account account);
    9. }

    6.在service层编写AccountService类

    1. @Service("accountService")
    2. public class AccountService {
    3. @Autowired
    4. private AccountDao accountDao;
    5. /**
    6. * 转账
    7. * @param id1 转出人id
    8. * @param id2 转入人id
    9. * @param price 金额
    10. */
    11. public void transfer(int id1,int id2,double price){
    12. // 转出人减少余额
    13. Account account1 = accountDao.findById(id1);
    14. account1.setBalance(account1.getBalance()-price);
    15. accountDao.update(account1);
    16. int i = 1/0;//设置异常,模拟程序出错
    17. // 转入人增加金额
    18. Account account2 = accountDao.findById(id2);
    19. account2.setBalance(account2.getBalance()+price);
    20. accountDao.update(account2);
    21. }
    22. }

    7.测试转账

    1. @RunWith(SpringJUnit4ClassRunner.class)
    2. @ContextConfiguration(locations = "classpath:applicationContext.xml")
    3. public class serviceTest {
    4. @Autowired
    5. private AccountService accountService;
    6. @Test
    7. public void testTransfer(){
    8. accountService.transfer(1,2,500);
    9. }
    10. }
    8.测试结果:
    程序执行了异常前面的代码,异常后面的代码没有执行,此时没有事务管理,会造成张三的余额减少,而李四的余额并没有增加。所以事务处理位于业务层,即一个service 方法是不能分割的。

    二、Spring事务_事务管理方案

     service层手动添加事务可以解决该问题:

    1. @Service("accountService")
    2. public class AccountService {
    3. @Autowired
    4. private AccountDao accountDao;
    5. /**
    6. * 转账
    7. * @param id1 转出人id
    8. * @param id2 转入人id
    9. * @param price 金额
    10. */
    11. public void transfer(int id1,int id2,double price){
    12. try{
    13. // 转出人减少余额
    14. Account account1 = accountDao.findById(id1);
    15. account1.setBalance(account1.getBalance()-price);
    16. accountDao.update(account1);
    17. int i = 1/0;//设置异常,模拟程序出错
    18. // 转入人增加金额
    19. Account account2 = accountDao.findById(id2);
    20. account2.setBalance(account2.getBalance()+price);
    21. accountDao.update(account2);
    22. sqlSession.commit();
    23. }catch(Exception e){
    24. sqlSession.rollback();
    25. }
    26. }
    27. }
    但在 Spring 管理下不允许手动提交和回滚事务。此时我们需要使用Spring的事务管理方案,在 Spring 框架中提供了两种事务管理方案:
    1.   编程式事务:通过编写代码实现事务管理。
    2.声明式事务:基于AOP技术实现事务管理。
    Spring框架中,编程式事务管理很少使用,我们对声明式事务管理进行详细学习。
    Spring的声明式事务管理在底层采用了AOP 技术,其最大的优点在于无需通过编程的方式管理事务,只需要在配置文件中进行相关的规则声明,就可以将事务规则应用到业务逻辑中
    使用AOP技术为service方法添加如下通知:

    三、Spring事务_事务管理器

     Spring依赖事务管理器进行事务管理,事务管理器即一个通知类,我们为该通知类设置切点为service层方法即可完成事务自动管理。由于不同技术操作数据库,进行事务操作的方法不同。如:JDBC提交事务是 connection.commit() MyBatis提交事务是 sqlSession.commit() ,所以Spring提供了多个事务管理器。

    事务管理器名称作用
    org.springframework.jdbc.datasource.DataSourceTransactionManager针对JDBC技术提供的事务管理器,适用于JDBC和MyBatis
    org.springframework.orm.hibernate3.HibernateTransactionManger针对于Hibernate框架提供的事务管理器。适用于Hibernate
    org.springframework.orm.jpa.JpaTransactionManger针对于JPA技术提供的事务管理器。适用于JPA
    org.springframework.transaction.jta.JtaTransactionManger跨越了多个事务管理源。适用在两个或者多个不同的数据源中实现事务控制。

     我们使理。

     1.引入依赖

    1. <dependency>
    2.    <groupId>org.springframeworkgroupId>
    3.    <artifactId>spring-txartifactId>
    4.    <version>5.3.13version>
    5. dependency>
    6. <dependency>
    7.    <groupId>org.aspectjgroupId>
    8.    <artifactId>aspectjweaverartifactId>
    9.    <version>1.8.7version>
    10. dependency>

    2.在配置文件中引入约束

    1. xmlns:aop="http://www.springframework.org/schema/aop"
    2. xmlns:tx="http://www.springframework.org/schema/tx"
    3. http://www.springframework.org/schema/aop
    4. http://www.springframework.org/schema/aop/spring-aop.xsd
    5. http://www.springframework.org/schema/tx
    6. http://www.springframework.org/schema/tx/spring-tx.xsd

    3.进行事务配置

    1. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    2. <property name="dataSource" ref="dataSource">property>
    3. bean>
    4. <tx:advice id="txAdvice">
    5. <tx:attributes>
    6. <tx:method name="*" propagation="REQUIRED" isolation="DEFAULT"/>
    7. <tx:method name="find*" read-only="true" isolation="READ_UNCOMMITTED">tx:method>
    8. tx:attributes>
    9. tx:advice>
    10. <aop:config>
    11. <aop:pointcut id="pointcut" expression="execution(* com.itbaizhan.service.*.*(..))"/>
    12. <aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut">aop:advisor>
    13. aop:config>

    配置好Spring事务之后,这是再执行上面的“张三李四转账”操作,要么全部执行,要么全部不执行。

    四、Spring事务_事务控制的API

     Spring进行事务控制的功能是由三个接口提供的这三个接口是Spring实现的,在开发中我们很少使用到,只需要了解他们的作用即可:

    PlatformTransactionManager 接口
    PlatformTransactionManager Spring 提供的事务管理器接口,所有事务管理器都实现了该接口
    该接口中提供了三个事务操作方法:
    TransactionStatus getTransactionTransactionDefinition definition ):获取事务状态信息。
    void commitTransactionStatus status ):事务提交
    void rollbackTransactionStatus status ):事务回滚
    TransactionDefinition 接口
    TransactionDefinition是事务的定义信息对象, 它有如下方法:
    String getName() 获取事务对象名称。
    int getIsolationLevel() 获取事务的隔离级别。
    int getPropagationBehavior() 获取事务的传播行为。
    int getTimeout() 获取事务的超时时间。
    boolean isReadOnly() 获取事务是否只读。
    TransactionStatus 接口
    TransactionStatus 是事务的状态接口,它描述了某一时间点上事务的状态信息。它有如下方法:
    void flush() : 刷新事务
    boolean hasSavepoint() : 获取是否存在保存点
    boolean isCompleted():  获取事务是否完成
    boolean isNewTransaction():  获取是否是新事务
    boolean isRollbackOnly():  获取是否回滚
    void setRollbackOnly() : 设置事务回滚

    五、Spring事务_事务的相关配置

    中可以进行事务的相关配置:
    1. <tx:advice id="txAdvice">
    2. <tx:attributes>
    3. <tx:method name="*" propagation="REQUIRED" isolation="DEFAULT"/>
    4. <tx:method name="find*" read-only="true" isolation="READ_UNCOMMITTED">tx:method>
    5. tx:attributes>
    6. tx:advice>
    中的属性:
    name :指定配置的方法。 * 表示所有方法, find* 表示所有以 find 开头的方法。
    read-only :是否是只读事务,只读事务不存在数据的修改,数据库将会为只读事务提供一些
    优化手段,会对性能有一定提升,建议在查询中开启只读事务。
    timeout :指定超时时间,在限定的时间内不能完成所有操作就会抛异常。默认永不超时(一般不配置)
    rollback-for:指定某个异常事务回滚,其他异常不回滚。默认所有异常回滚。(一般不配置)
    no-rollback-for :指定某个异常不回滚,其他异常回滚。默认所有异常回滚。(一般不配置)
    propagation :事务的传播行为
    isolation :事务的隔离级别

    六、Spring事务_事务的传播行为

     事务传播行为是指多个含有事务的方法相互调用时,事务如何在这些方法间传播。

    如果在 service 层的方法中调用了其他的 service 方法,假设每次执行service方法都要开启事务,此时就无法保证外层方法和内层方法处于同一个事务当中。
    1. // method1的所有方法在同一个事务中
    2. public void method1(){
    3.    // 此时会开启一个新事务,这就无法保证method1()
    4. 中所有的代码是在同一个事务中
    5.    method2();
    6.    System.out.println("method1");
    7. }
    8. public void method2(){
    9.    System.out.println("method2");
    10. }
    事务的传播特性就是解决这个问题的,Spring帮助我们将外层方法和内层方法放入同一事务中。
    传播行为介绍
    REQUIRED
    默认。支持当前事务,如果当前没有事务,就新建一个事务这是最常见的选择。
    SUPPORTS
    支持当前事务,如果当前没有事务,就以非事务方式执行。
    MANDATORY
    支持当前事务,如果当前没有事务,就抛出异常。
    REQUIRES_NEW
    新建事务,如果当前存在事务,把当前事务挂起。
    NOT_SUPPORTED
    以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。
    NEVER
    以非事务方式执行,如果当前存在事务,则抛出异常。
    NESTED
    必须在事务状态下执行,如果没有事务则新建事务,如果当前有事务则创建一个嵌套事务

    七、Spring事务_事务的隔离级别

     事务隔离级别反映事务提交并发访问时的处理态度,隔离级别越高,数据出问题的可能性越低,但效率也会越低。

    隔离级别脏读不可重复读幻读
    READ_UNCOMMITED (读取未提交内容)
    READ_COMMITED (读取提交内容)
    ×
    REPEATABLE_READ (重复读)
    ××
    SERIALIZABLE (可串行化)
    ×××

    √表示有,×表示没有

    如果设置为DEFAULT会使用数据库的默认隔离级别。
    SqlServer , Oracle 默认的事务隔离级别是 READ_COMMITED
    Mysql 的默认隔离级别是 REPEATABLE_READ

    八、Spring事务_注解配置声明式事务

    Spring支持使用注解配置声明式事务。用法如下:

    第一种:半注解半配置文件方式

    1.在配置文件applicationContext.xml中注册事务注解驱动

    1. <tx:annotation-driven transaction-manager="transactionManager">tx:annotation-driven>
    2. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    3. <property name="dataSource" ref="dataSource">property>
    4. bean>

    2.在需要事务支持的方法或类上加@Transactional注解

    1. @Service("accountService")
    2. //@Transactional:作用于类上时,该类的所有public方法都将具有该类型的事务属性
    3. @Transactional(propagation = Propagation.REQUIRED,isolation = Isolation.DEFAULT)
    4. public class AccountService {
    5. @Autowired
    6. private AccountDao accountDao;
    7. /**
    8. * 转账
    9. * @param id1 转出人id
    10. * @param id2 转入人id
    11. * @param price 金额
    12. */
    13. public void transfer(int id1,int id2,double price){
    14. // 转出人减少余额
    15. Account account1 = accountDao.findById(id1);
    16. account1.setBalance(account1.getBalance()-price);
    17. accountDao.update(account1);
    18. int i = 1/0;//设置异常,使得操作中断,造成事务问题
    19. // 转入人增加金额
    20. Account account2 = accountDao.findById(id2);
    21. account2.setBalance(account2.getBalance()+price);
    22. accountDao.update(account2);
    23. }
    24. //作用于方法上时,该方法将都具有该类型的事务属性
    25. @Transactional(isolation = Isolation.READ_UNCOMMITTED)
    26. public Account findById(int id){
    27. return accountDao.findById(id);
    28. }
    29. }

    测试方法:

    1. @RunWith(SpringJUnit4ClassRunner.class)
    2. //加载配置文件
    3. @ContextConfiguration(locations = "classpath:applicationContext.xml")
    4. public class serviceTest {
    5. @Autowired
    6. private AccountService accountService;
    7. @Test
    8. public void testTransfer(){
    9. accountService.transfer(1,2,500);
    10. }
    11. }

    第二种:全注解方式(配置类方式)

    配置类代替xml中的注解事务支持:在配置类上方写 @EnableTranscationManagement
    1. @Configuration//表名配置类
    2. @ComponentScan("com.itbaizhan")//扫描注解
    3. @EnableTransactionManagement//开启注解事务
    4. public class SpringConfig {
    5. // 创建druid连接池数据源对象
    6. @Bean
    7. public DataSource getDataSource(){
    8. DruidDataSource druidDataSource = new DruidDataSource();
    9. druidDataSource.setDriverClassName("com.mysql.jdbc.Driver");
    10. druidDataSource.setUrl("jdbc:mysql:///spring");
    11. druidDataSource.setUsername("root");
    12. druidDataSource.setPassword("123456");
    13. return druidDataSource;
    14. }
    15. @Bean
    16. public SqlSessionFactoryBean getSqlSession(DataSource dataSource){
    17. SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
    18. sqlSessionFactoryBean.setDataSource(dataSource);
    19. return sqlSessionFactoryBean;
    20. }
    21. @Bean
    22. public MapperScannerConfigurer getMapperScanner(){
    23. MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer();
    24. mapperScannerConfigurer.setBasePackage("com.itbaizhan.dao");
    25. return mapperScannerConfigurer;
    26. }
    27. @Bean
    28. public DataSourceTransactionManager getTransactionManager(DataSource dataSource){
    29. DataSourceTransactionManager dataSourceTransactionManager = new DataSourceTransactionManager();
    30. dataSourceTransactionManager.setDataSource(dataSource);
    31. return dataSourceTransactionManager;
    32. }
    33. }

    测试方法:

    1. @RunWith(SpringJUnit4ClassRunner.class)
    2. @ContextConfiguration(classes = SpringConfig.class)//加载配置类
    3. public class serviceTest2 {
    4. @Autowired
    5. private AccountService accountService;
    6. @Test
    7. public void testTransfer(){
    8. accountService.transfer(1,2,500);
    9. }
    10. }

    九、知识点整理:

    1.事务指“不可分割的原子操作,要么全部执行,要么全部不执行”。

    2.Spring声明式事务在底层采用了AOP技术

    3.DataSourceTransactionManager 可以管理MyBatis的事务

    4.Spring中,所有的事务管理器都实现了"PlatformTransactionManager 接口

    5. read-only 属性配置只读事务,isolation属性配置隔离级别

    6..Spring中,事务的默认传播级别为REQUIRED

    7.事务的隔离级别越高,数据出问题的可能性越低,效率也会越低。

    8.Spring中,配置声明式事务用到的注解为@Transactional

  • 相关阅读:
    【Unity3D】3D 物体概念 ① ( 轴心点概念 | 物体的父子关系 | 子节点相对坐标 )
    PMP考前梳理:敏捷知识的相关要点
    vue3中表格单选
    保护热板法导热仪中计量加热器任意设定温度及其加热电功率的超高精度PID恒定控制
    爬虫数据获取的秘诀,高效稳定让你爬个够
    专业游戏翻译公司怎么选择比较合适
    洛谷-P7910 [CSP-J 2021]-插入排序(详细讲解)
    用C#也能做机器学习?
    Java final关键字具有什么功能呢?
    C# 语言的基本语法结构
  • 原文地址:https://blog.csdn.net/m0_51697147/article/details/126138238