1.背景

该博客要解决的重要问题如下:
spring的3种安全性问题,4种事务特性,5种隔离级别,7种传播行为

  1. spring的3种安全性问题,4种事务特性,5种隔离级别,7种传播行为
  2. spring事务:
  3. 什么是事务:
  4. 事务逻辑上的一组操作,组成这组操作的各个逻辑单元,要么一起成功,要么一起失败.
  5. 事务特性(4种):
  6. 原子性 (atomicity):强调事务的不可分割.
  7. 一致性 (consistency):事务的执行的前后数据的完整性保持一致.
  8. 隔离性 (isolation):一个事务执行的过程中,不应该受到其他事务的干扰
  9. 持久性(durability) :事务一旦结束,数据就持久到数据库
  10. 如果不考虑隔离性引发安全性问题(3种):
  11. 脏读 :一个事务读到了另一个事务的未提交的数据
  12. 不可重复读 :一个事务读到了另一个事务已经提交的 update 的数据导致多次查询结果不一致.
  13. 虚幻读 :一个事务读到了另一个事务已经提交的 insert 的数据导致多次查询结果不一致.
  14. 解决读问题: 设置事务隔离级别(5种)
  15. DEFAULT 这是一个PlatfromTransactionManager默认的隔离级别,使用数据库默认的事务隔离级别.
  16. 未提交读(read uncommited) :脏读,不可重复读,虚读都有可能发生
  17. 已提交读 (read commited):避免脏读。但是不可重复读和虚读有可能发生
  18. 可重复读 (repeatable read) :避免脏读和不可重复读.但是虚读有可能发生.
  19. 串行化的 (serializable) :避免以上所有读问题.
  20. Mysql 默认:可重复读
  21. Oracle 默认:读已提交
  22. read uncommited:是最低的事务隔离级别,它允许另外一个事务可以看到这个事务未提交的数据。
  23. read commited:保证一个事物提交后才能被另外一个事务读取。另外一个事务不能读取该事物未提交的数据。
  24. repeatable read:这种事务隔离级别可以防止脏读,不可重复读。但是可能会出现幻象读。避免脏读、不可重复读的问题
  25. serializable:这是花费最高代价但最可靠的事务隔离级别。事务被处理为顺序执行。可以避免脏读、不可重复读、虚幻读的问题(避免三种)。
  26. 事务的传播行为(7种)
  27. 保证同一个事务中
  28. propagion_required: 支持当前事务,如果不存在 就新建一个(默认)
  29. propagion_supports: 支持当前事务,如果不存在,就不使用事务
  30. propagion_mandatory: 支持当前事务,如果不存在,抛出异常
  31. 保证没有在同一个事务中
  32. propagion_requires_new: 如果有事务存在,挂起当前事务,创建一个新的事务
  33. propagion_not_supported: 以非事务方式运行,如果有事务存在,挂起当前事务
  34. propagion_never: 以非事务方式运行,如果有事务存在,抛出异常
  35. propagion_nested: 如果当前事务存在,则嵌套事务执行

2.事务简介

2.1.什么是事务

(1)事务是数据库操作最基本单元,逻辑上一组操作,要么都成功,要么都失败。
(2)典型应用场景:银行转账
张无忌 转账 100 元 给 赵敏
张无忌 少 100,赵敏 多 100,
这一组操作要么都成功,要么都失败,
绝对不允许出现,张无忌少了100,但是赵敏却没有增加100
原生的jdbc的处理逻辑如下:
try {
// 开启事务connection.setAutoCommit(false);
// 转出100元
// 传入100元
// 其他数据库操作….
// 提交事务connection.commit();
} catch (Exception e) {
// 事务回滚
connection.rollback();
} finally {
// 关闭资源
statement.close();
connection.close();
}

2.2.事务四个特性(ACID)

(1)、原子性
事务是数据库的逻辑工作单位,事务中包含的各操作要么都做,要么都不做
(2)、一致性
事务执行的结果必须是使数据库从一个一致性状态变到另一个一致性状态。因此当数据库只包含成功事务提交的结果时,就说数据库处于一致性状态。
如果数据库系统 运行中发生故障,有些事务尚未完成就被迫中断,这些未完成事务对数据库所做的修改有一部分已写入物理数据库,这时数据库就处于一种不正确的状态,或者说是 不一致的状态。
(3)、隔离性
一个事务的执行不能其它事务干扰。即一个事务内部的操作及使用的数据对其它并发事务是隔离的,并发执行的各个事务之间不能互相干扰。
(4) 、持续性
也称永久性,指一个事务一旦提交,它对数据库中的数据的改变就应该是永久性的。接下来的其它操作或故障不应该对其执行结果有任何影响。

3.回顾原生态的jdbc实现事务

需求:使用原生的jdbc事务实现张无忌向赵敏转账100元,并模拟如果转账过程中出现异常的情况。
步骤一:数据库表如下
spring之事务详解 - 图1
步骤二:事务测试代码如下

  1. /**
  2. * 测试
  3. * jdbc事务演示
  4. */
  5. @Test
  6. public void test01() throws Exception {
  7. Connection connection = null;
  8. Statement statement = null;
  9. try {
  10. Class.forName("com.mysql.jdbc.Driver");
  11. connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/ldp-data?characterEncoding=utf8", "root", "admin");
  12. statement = connection.createStatement();
  13. // 开启事务
  14. connection.setAutoCommit(false);
  15. System.out.println("开启事务----------");
  16. // 转出100元
  17. String sql01 = "UPDATE user_account SET money=money-100 WHERE id=1";
  18. statement.executeUpdate(sql01);
  19. // 模拟故障
  20. System.out.println(1 / 0);
  21.        // 模拟转入100元
  22. String sql02 = "UPDATE user_account SET money=money+100 WHERE id=2";
  23. statement.executeUpdate(sql02);
  24. // 提交事务
  25. System.out.println("提交事务----------");
  26. connection.commit();
  27. } catch (Exception e) {
  28. connection.rollback();
  29. System.out.println("事务回滚---------");
  30. } finally {
  31. // 关闭资源
  32. statement.close();
  33. connection.close();
  34. }
  35. }

步骤三:
通过开启事务与不开启是否,执行程序观察结果;
通过有故障与无故障的情况下查看数据库数据结果变化;
通过上面测试结果与数据观察深入理解事务的重要性;

4.JdbcTemplate实现事务

这一节中我们的需求与上一节一样:
实现张无忌向赵敏转账100元,并模拟如果转账过程中出现异常的情况。
只是实现的方式不一样,这一节我们要使用JdbcTemplate实现事务

4.1.理论知识

1、事务添加到 JavaEE 三层结构里面 Service 层(业务逻辑层)
2、在 Spring 进行事务管理操作
有两种方式:
(1)编程式事务管理(就像之前讲的jdbc原生事务,一般不用)
(2)声明式事务管理(贴标签就可以了,生产中常用)
3、声明式事务管理
(1)基于注解方式
(2)基于 xml 配置文件方式
4、在 Spring 进行声明式事务管理,底层使用 AOP 原理

4.2.准备工作

写一个没有事务的转账业务
步骤一:编写model

  1. package com.ldp.jdbctemplate.model;
  2. public class UserAccount {
  3. private Integer id;
  4. private String userName;
  5. private Integer money;
  6. public Integer getId() {
  7. return id;
  8. }
  9. public void setId(Integer id) {
  10. this.id = id;
  11. }
  12. public String getUserName() {
  13. return userName;
  14. }
  15. public void setUserName(String userName) {
  16. this.userName = userName;
  17. }
  18. public Integer getMoney() {
  19. return money;
  20. }
  21. public void setMoney(Integer money) {
  22. this.money = money;
  23. }
  24. @Override
  25. public String toString() {
  26. return "UserAccount{" +
  27. "id=" + id +
  28. ", userName='" + userName + '\'' +
  29. ", money=" + money +
  30. '}';
  31. }
  32. }

步骤二:编写dao接口

  1. public interface IUserAccountDao {
  2. int update(UserAccount userAccount);
  3. }

步骤三:编写dao实现

  1. package com.ldp.jdbctemplate.dao.impl;
  2. import com.ldp.jdbctemplate.dao.IUserAccountDao;
  3. import com.ldp.jdbctemplate.model.UserAccount;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.jdbc.core.JdbcTemplate;
  6. import org.springframework.stereotype.Repository;
  7. @Repository
  8. public class UserAccountDaoImpl implements IUserAccountDao {
  9. @Autowired
  10. private JdbcTemplate jdbcTemplate;
  11. @Override
  12. public int update(UserAccount userAccount) {
  13. String sql = "UPDATE user_account SET money=money+? WHERE id=?";
  14. return jdbcTemplate.update(sql, userAccount.getMoney(), userAccount.getId());
  15. }
  16. }

步骤四:编写service接口

  1. package com.ldp.jdbctemplate.service;
  2. import com.ldp.jdbctemplate.model.UserAccount;
  3. public interface IUserAccountService {
  4. /**
  5. * 转账
  6. *
  7. * @param account1
  8. * @param account2
  9. */
  10. void transferAccounts(UserAccount account1, UserAccount account2);
  11. }

步骤五:编写service实现

  1. package com.ldp.jdbctemplate.service.impl;
  2. import com.ldp.jdbctemplate.dao.IUserAccountDao;
  3. import com.ldp.jdbctemplate.model.UserAccount;
  4. import com.ldp.jdbctemplate.service.IUserAccountService;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. @Service
  8. public class UserAccountServiceImpl implements IUserAccountService {
  9. @Autowired
  10. private IUserAccountDao userAccountDao;
  11. @Override
  12. public void transferAccounts(UserAccount account1, UserAccount account2) {
  13. // 更新账户1
  14. userAccountDao.update(account1);
  15. // 模拟故障
  16. // System.out.println(1 / 0);
  17. // 更新账户2
  18. userAccountDao.update(account2);
  19. }
  20. }

步骤六:编写service测试

  1. package com.ldp.jdbctemplate.service.impl;
  2. import com.ldp.jdbctemplate.model.UserAccount;
  3. import com.ldp.jdbctemplate.service.IUserAccountService;
  4. import org.junit.jupiter.api.Test;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
  7. @SpringJUnitConfig(locations = "classpath:bean01.xml")
  8. public class UserAccountServiceImplTest {
  9. @Autowired
  10. private IUserAccountService userAccountService;
  11. @Test
  12. public void transferAccounts() {
  13. System.out.println("测试开始....");
  14. // 账户1
  15. UserAccount account1 = new UserAccount();
  16. account1.setId(1);
  17. account1.setUserName("张无忌");
  18. account1.setMoney(-100);
  19. // 账户2
  20. UserAccount account2 = new UserAccount();
  21. account2.setId(2);
  22. account2.setUserName("赵敏");
  23. account2.setMoney(100);
  24. userAccountService.transferAccounts(account1, account2);
  25. System.out.println("测试结束....");
  26. }
  27. }

到这里转账业务功能已经实现,但是还没有加入事务管理,如果在转账的过程中出现异常,会导致账户出错!

4.3.基于注解方式的声明式事务管理实现

步骤一:在xml中创建事务管理器与开启事务管理注解

  1. <!--创建事务管理器-->
  2. <bean id="transactionManager"
  3. class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  4. <!--注入数据源-->
  5. <property name="dataSource" ref="dataSource"></property>
  6. </bean>
  7. <!--开启事务注解-->
  8. <tx:annotation-driven transaction-manager="transactionManager"></tx:annotation-driven>

步骤二:在service的类或者方法上贴注解@Transactional

  1. @Override
  2. @Transactional //基于注解方式的声明式事务管理实现
  3. public void transferAccounts(UserAccount account1, UserAccount account2) {
  4. // 更新账户1
  5. userAccountDao.update(account1);
  6. // 模拟故障
  7. // System.out.println(1 / 0);
  8. // 更新账户2
  9. userAccountDao.update(account2);
  10. }

步骤三:测试
与上一步中的测试一样,就算是查询异常,数据仍然会保持一致性!

4.4.基于xml配置方式的声明式事务管理实现

步骤一:xml配置

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context" 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 http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd
  8. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd">
  9. <!--1.组件扫描-->
  10. <context:component-scan base-package="com.ldp.jdbctemplate"></context:component-scan>
  11. <!--2.数据库连接池-->
  12. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" destroy-method="close">
  13. <property name="url" value="jdbc:mysql://127.0.0.1:3306/ldp-data?characterEncoding=utf8"/>
  14. <property name="username" value="root"/>
  15. <property name="password" value="admin"/>
  16. <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
  17. </bean>
  18. <!--3.JdbcTemplate对象-->
  19. <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
  20. <!--注入dataSource-->
  21. <property name="dataSource" ref="dataSource"></property>
  22. </bean>
  23. <!-- xml声明事务管理 -->
  24. <!--1.创建事务管理器-->
  25. <bean id="transactionManager"
  26. class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  27. <!--注入数据源-->
  28. <property name="dataSource" ref="dataSource"></property>
  29. </bean>
  30. <!--2. 配置通知-->
  31. <tx:advice id="txadvice">
  32. <!--配置事务参数-->
  33. <tx:attributes>
  34. <!--指定哪种规则的方法上面添加事务-->
  35. <tx:method name="*" propagation="REQUIRED"/>
  36. <!--<tx:method name="transfer*"/>-->
  37. <!--以下这些方法不加入事务-->
  38. <tx:method name="get*" propagation="SUPPORTS" read-only="true"/>
  39. <tx:method name="query*" propagation="SUPPORTS" read-only="true"/>
  40. <tx:method name="select*" propagation="SUPPORTS" read-only="true"/>
  41. <tx:method name="find*" propagation="SUPPORTS" read-only="true"/>
  42. </tx:attributes>
  43. </tx:advice>
  44. <!--3. 配置切入点和切面-->
  45. <aop:config>
  46. <!--配置切入点-->
  47. <aop:pointcut id="pt" expression="execution(* com.ldp.jdbctemplate.service.impl.*ServiceImpl.*(..))"/>
  48. <!--配置切面-->
  49. <aop:advisor advice-ref="txadvice" pointcut-ref="pt"/>
  50. </aop:config>
  51. </beans>

步骤二:测试
注意:
1.测试方式与之前的一样
2.测试的时候删除上一节中的@Transactional注解,避免造成测试干扰

4.5.全注解实现事务

步骤一:编写配置类

  1. package com.ldp.jdbctemplate.config;
  2. import com.alibaba.druid.pool.DruidDataSource;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.ComponentScan;
  5. import org.springframework.context.annotation.Configuration;
  6. import org.springframework.jdbc.core.JdbcTemplate;
  7. import org.springframework.jdbc.datasource.DataSourceTransactionManager;
  8. import org.springframework.transaction.annotation.EnableTransactionManagement;
  9. import javax.sql.DataSource;
  10. /**
  11. * @author 姿势帝-博客园
  12. * @address https://www.cnblogs.com/newAndHui/
  13. * @WeChat 851298348
  14. * @create 02/10 5:04
  15. * @description
  16. */
  17. @Configuration //配置类
  18. @ComponentScan(basePackages = "com.ldp") //组件扫描
  19. @EnableTransactionManagement //开启事务
  20. public class TransactionConfig {
  21. //创建数据库连接池
  22. @Bean
  23. public DruidDataSource getDruidDataSource() {
  24. DruidDataSource dataSource = new DruidDataSource();
  25. dataSource.setDriverClassName("com.mysql.jdbc.Driver");
  26. dataSource.setUrl("jdbc:mysql:///ldp-data");
  27. dataSource.setUsername("root");
  28. dataSource.setPassword("admin");
  29. return dataSource;
  30. }
  31. //创建 JdbcTemplate 对象
  32. @Bean
  33. public JdbcTemplate getJdbcTemplate(DataSource dataSource) {
  34. //到 ioc 容器中根据类型找到 dataSource
  35. JdbcTemplate jdbcTemplate = new JdbcTemplate();
  36. //注入 dataSource
  37. jdbcTemplate.setDataSource(dataSource);
  38. return jdbcTemplate;
  39. }
  40. //创建事务管理器
  41. @Bean
  42. public DataSourceTransactionManager getDataSourceTransactionManager(DataSource dataSource) {
  43. DataSourceTransactionManager transactionManager = new DataSourceTransactionManager();
  44. transactionManager.setDataSource(dataSource);
  45. return transactionManager;
  46. }
  47. }

步骤二:xml文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context" 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 http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd
  8. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd">
  9. <!--1.组件扫描-->
  10. <context:component-scan base-package="com.ldp.jdbctemplate"></context:component-scan>
  11. </beans>

步骤三:service方法上增加@Transactional注解

  1. @Override
  2. @Transactional //基于注解方式的声明式事务管理实现
  3. public void transferAccounts(UserAccount account1, UserAccount account2) {
  4. // 更新账户1
  5. userAccountDao.update(account1);
  6. // 模拟故障
  7. // System.out.println(1 / 0);
  8. // 更新账户2
  9. userAccountDao.update(account2);
  10. }

步骤四:测试
与之前的测试逻辑一样

5.事务配置详解

注解@Transactional的配置参数
spring之事务详解 - 图2

5.1.事务传播行为propagation

propagation:事务传播行为,多事务方法直接进行调用,这个过程中事务是如何进行管理的。
spring框架提供了7种事务传播行为

类别 传播属性 单词含义 简要描述 具体描述
保证在同一个事务中 required 必须的 支持当前事务,如果不存在 就新建一个(默认) 如果有事务在运行,当前的方法就在这个事务内运行,否则,就启动一个新的事务,并在自己的事务内运行,生产中常用该方式(默认方式)。
supports 支持 支持当前事务,如果不存在,就不使用事务 如果有事务在运行,当前的方法就在这个事务内运行,否则,它可以不运行在事务中。
mandatory 强制性的 支持当前事务,如果不存在,抛出异常 当前的方法必须运行在事务内部,如果没有正在运行的事务,就抛出异常。
保证不在同一个事务中 requires_new 如果有事务存在,挂起当前事务,创建一个新的事务 当前的方法必须启动新事务,并在它自己的事务内运行。如果有事务正在运行,应将它挂起。
not_supported 以非事务方式运行,如果有事务存在,挂起当前事务 当前的方法不应该运行在事务中。如果有运行的事务,将它挂起。
never 绝不 以非事务方式运行,如果有事务存在,抛出异常 当前的方法不应该运行在事务中,如果有运行的事务,就抛出异常。
nested 嵌套的 如果当前事务存在,则嵌套事务执行 如果有事务在运行,当前的方法就应该在这个事务的嵌套事务内运行。否则,就启动一个新的事务,并在它自己的事务内运行。

下面我们来测试这些传播方式
测试设计思路,method01A()中调用方法method02A(),通过修改@Transactional(propagation = Propagation.REQUIRED)参数、是否抛出异常等条件,观察数据库中数据变化与事务名称的变化。
// 查看是否存在事务
boolean active = TransactionSynchronizationManager.isActualTransactionActive();
// 获取当前事务名称
String transactionName = TransactionSynchronizationManager.getCurrentTransactionName();
具体步骤:
步骤一:数据库设计
spring之事务详解 - 图3
步骤二:业务类TransactionTest01ServiceImpl

  1. package com.ldp.jdbctemplate.service.impl;
  2. import com.ldp.jdbctemplate.dao.IUserAccountDao;
  3. import com.ldp.jdbctemplate.model.UserAccount;
  4. import com.ldp.jdbctemplate.service.ITransactionTest01Service;
  5. import com.ldp.jdbctemplate.service.ITransactionTest02Service;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Service;
  8. import org.springframework.transaction.annotation.Propagation;
  9. import org.springframework.transaction.annotation.Transactional;
  10. import org.springframework.transaction.support.TransactionSynchronizationManager;
  11. /**
  12. * @author 姿势帝-博客园
  13. * @address https://www.cnblogs.com/newAndHui/
  14. * @WeChat 851298348
  15. * @create 02/11 11:11
  16. * @description
  17. */
  18. @Service
  19. public class TransactionTest01ServiceImpl implements ITransactionTest01Service {
  20. @Autowired
  21. private IUserAccountDao userAccountDao;
  22. @Autowired
  23. private ITransactionTest02Service test02Service;
  24. @Override
  25. // 修改了参数观察变化
  26. @Transactional(propagation = Propagation.REQUIRED)
  27. public void method01A() {
  28. // 账户
  29. UserAccount account1 = new UserAccount(1, "张无忌", -100);
  30. UserAccount account2 = new UserAccount(2, "赵敏", 100);
  31. // 查看是否存在事务
  32. boolean active = TransactionSynchronizationManager.isActualTransactionActive();
  33. // 获取当前事务名称
  34. String transactionName = TransactionSynchronizationManager.getCurrentTransactionName();
  35. System.out.println("active01A=" + active + ",transactionName01A=" + transactionName);
  36. // 更新账户1
  37. userAccountDao.update(account1);
  38. // 模拟故障
  39. // System.out.println(1 / 0);
  40. // 更新账户2
  41. userAccountDao.update(account2);
  42. // 测试01A事务下 02A事务的情况
  43. test02Service.method02A();
  44. }
  45. }

步骤三:业务类TransactionTest02ServiceImpl

  1. package com.ldp.jdbctemplate.service.impl;
  2. import com.ldp.jdbctemplate.dao.IUserAccountDao;
  3. import com.ldp.jdbctemplate.model.UserAccount;
  4. import com.ldp.jdbctemplate.service.ITransactionTest02Service;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. import org.springframework.transaction.annotation.Propagation;
  8. import org.springframework.transaction.annotation.Transactional;
  9. import org.springframework.transaction.support.TransactionSynchronizationManager;
  10. /**
  11. * @author 姿势帝-博客园
  12. * @address https://www.cnblogs.com/newAndHui/
  13. * @WeChat 851298348
  14. * @create 02/11 11:11
  15. * @description
  16. */
  17. @Service
  18. public class TransactionTest02ServiceImpl implements ITransactionTest02Service {
  19. @Autowired
  20. private IUserAccountDao userAccountDao;
  21. @Override
  22. // 修改了参数观察变化
  23. @Transactional(propagation = Propagation.MANDATORY)
  24. public void method02A() {
  25. // 账户
  26. UserAccount account1 = new UserAccount(3, "张三丰", -100);
  27. UserAccount account2 = new UserAccount(4, "金毛狮王", 100);
  28. boolean active = TransactionSynchronizationManager.isActualTransactionActive();
  29. String transactionName = TransactionSynchronizationManager.getCurrentTransactionName();
  30. System.out.println("active02A" + active + ",transactionName02A=" + transactionName);
  31. // 更新账户1
  32. userAccountDao.update(account1);
  33. // 模拟故障
  34. System.out.println(1 / 0);
  35. // 更新账户2
  36. userAccountDao.update(account2);
  37. }
  38. }

步骤四:测试代码

  1. package com.ldp.jdbctemplate.service.impl;
  2. import com.ldp.jdbctemplate.service.ITransactionTest01Service;
  3. import org.junit.jupiter.api.Test;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
  6. /**
  7. * @author 姿势帝-博客园
  8. * @address https://www.cnblogs.com/newAndHui/
  9. * @WeChat 851298348
  10. * @create 02/11 11:21
  11. * @description
  12. */
  13. @SpringJUnitConfig(locations = "classpath:bean04.xml")
  14. public class TransactionTest01ServiceImplTest {
  15. @Autowired
  16. private ITransactionTest01Service test01Service;
  17. @Test
  18. public void method01A() {
  19. test01Service.method01A();
  20. }
  21. }

5.2.隔离级别isolation详解

如果不考虑隔离性引发安全性问题:脏读 :一个事务读到了另一个事务的未提交的数据 不可重复读 :一个事务读到了另一个事务已经提交的 update 的数据导致多次查询结果不一致. 虚幻读 :一个事务读到了另一个事务已经提交的 insert 的数据导致多次查询结果不一致.
解决读问题: 设置事务隔离级别(5种)DEFAULT 这是一个PlatfromTransactionManager默认的隔离级别,使用数据库默认的事务隔离级别. 未提交读(read uncommited) :脏读,不可重复读,虚读都有可能发生 已提交读 (read commited):避免脏读。但是不可重复读和虚读有可能发生 可重复读 (repeatable read) :避免脏读和不可重复读.但是虚读有可能发生. 串行化的 (serializable) :避免以上所有读问题. Mysql 默认:可重复读Oracle 默认:读已提交
spring之事务详解 - 图4
read uncommited:是最低的事务隔离级别,它允许另外一个事务可以看到这个事务未提交的数据。 read commited:保证一个事物提交后才能被另外一个事务读取。另外一个事务不能读取该事物未提交的数据。 repeatable read:这种事务隔离级别可以防止脏读,不可重复读。但是可能会出现幻象读。它除了保证一个事务不能被另外一个事务读取未提交的数据之外,还避免了不可重复读的情况。 serializable:这是花费最高代价但最可靠的事务隔离级别。事务被处理为顺序执行。除了防止脏读,不可重复读之外,还避免了幻象读(避免三种)。
代码测试
编写代码测试,主要通过设置不同的隔离级别,验证脏读、不可重复、幻读的三中情况,加深对隔离级别的理解
步骤一:数据库表设计
spring之事务详解 - 图5
步骤二:对数据库的新增、修改、查询方法实现

  1. package com.ldp.jdbctemplate.dao.impl;
  2. import com.ldp.jdbctemplate.dao.IUserAccountDao;
  3. import com.ldp.jdbctemplate.model.UserAccount;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.jdbc.core.BeanPropertyRowMapper;
  6. import org.springframework.jdbc.core.JdbcTemplate;
  7. import org.springframework.stereotype.Repository;
  8. import java.util.List;
  9. /**
  10. * @author 姿势帝-博客园
  11. * @address https://www.cnblogs.com/newAndHui/
  12. * @WeChat 851298348
  13. * @create 02/09 7:04
  14. * @description
  15. */
  16. @Repository
  17. public class UserAccountDaoImpl implements IUserAccountDao {
  18. @Autowired
  19. private JdbcTemplate jdbcTemplate;
  20. @Override
  21. public int update(UserAccount userAccount) {
  22. String sql = "UPDATE user_account SET money=money+? WHERE id=?";
  23. return jdbcTemplate.update(sql, userAccount.getMoney(), userAccount.getId());
  24. }
  25. @Override
  26. public UserAccount selectByUserName(String userName) {
  27. // String sql = "SELECT id,user_name,money FROM user_account WHERE user_name=? for update";
  28. String sql = "SELECT id,user_name,money FROM user_account WHERE user_name=?";
  29. List<UserAccount> list = jdbcTemplate.query(sql, new BeanPropertyRowMapper<UserAccount>(UserAccount.class), userName);
  30. if (list.size() == 0) {
  31. return null;
  32. }
  33. return list.get(0);
  34. }
  35. @Override
  36. public int save(UserAccount userAccount) {
  37. String sql = "INSERT INTO user_account(user_name,money) VALUES (?,?)";
  38. return jdbcTemplate.update(sql, userAccount.getUserName(), userAccount.getMoney());
  39. }
  40. }

步骤三:sevice方法实现三个业务方法:无数据时增加数据、有数据时修改数据、多次查询数据

  1. package com.ldp.jdbctemplate.service.impl;
  2. import com.ldp.jdbctemplate.dao.IUserAccountDao;
  3. import com.ldp.jdbctemplate.model.UserAccount;
  4. import com.ldp.jdbctemplate.service.IIsolationTest01Service;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. import org.springframework.transaction.annotation.Isolation;
  8. import org.springframework.transaction.annotation.Transactional;
  9. /**
  10. * @author 姿势帝-博客园
  11. * @address https://www.cnblogs.com/newAndHui/
  12. * @WeChat 851298348
  13. * @create 02/16 6:21
  14. * @description
  15. */
  16. @Service
  17. public class IsolationTest01ServiceImpl implements IIsolationTest01Service {
  18. @Autowired
  19. private IUserAccountDao userAccountDao;
  20. /**
  21. * 用户不存在新增该用户
  22. *
  23. * @param userName
  24. */
  25. @Override
  26. // 通过设置不同的隔离级别验证 脏读、不可重复读、虚幻读 三中情况
  27. @Transactional(isolation = Isolation.DEFAULT)
  28. public void save01A(String userName) {
  29. UserAccount userAccount = userAccountDao.selectByUserName(userName);
  30. if (userAccount == null) {
  31. userAccountDao.save(new UserAccount(userName, 100));
  32. UserAccount userAccountNew = userAccountDao.selectByUserName(userName);
  33. System.out.println("用户保存成功:" + userAccountNew);
  34. } else {
  35. System.out.println("用户已存在:" + userAccount);
  36. }
  37. }
  38. /**
  39. * 用户存在时修改用户
  40. *
  41. * @param userName
  42. */
  43. @Override
  44. // 通过设置不同的隔离级别验证 脏读、不可重复读、虚幻读 三中情况
  45. @Transactional(isolation = Isolation.READ_UNCOMMITTED)
  46. public void update01B(String userName) {
  47. UserAccount userAccount = userAccountDao.selectByUserName(userName);
  48. if (userAccount != null) {
  49. userAccountDao.update(new UserAccount(userAccount.getId(), userName, -100));
  50. UserAccount userAccountNew = userAccountDao.selectByUserName(userName);
  51. System.out.println("用户修改成功:" + userAccountNew);
  52. } else {
  53. System.out.println("用户不存在:" + userName);
  54. }
  55. }
  56. /**
  57. * 多次查询用户
  58. *
  59. * @param userName
  60. */
  61. @Override
  62. // 通过设置不同的隔离级别验证 脏读、不可重复读、虚幻读 三中情况
  63. @Transactional(isolation = Isolation.REPEATABLE_READ)
  64. public void select01C(String userName) {
  65. // 第一次查询
  66. UserAccount userAccount1 = userAccountDao.selectByUserName(userName);
  67. System.out.println("第一次查询结果:" + userAccount1);
  68. UserAccount userAccount2 = userAccountDao.selectByUserName(userName);
  69. System.out.println("第二次查询结果:" + userAccount2);
  70. }
  71. }

步骤四:测试方法

  1. package com.ldp.jdbctemplate.service.impl;
  2. import com.ldp.jdbctemplate.service.IIsolationTest01Service;
  3. import org.junit.jupiter.api.Test;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
  6. /**
  7. * @author 姿势帝-博客园
  8. * @address https://www.cnblogs.com/newAndHui/
  9. * @WeChat 851298348
  10. * @create 02/16 6:36
  11. * @description
  12. */
  13. @SpringJUnitConfig(locations = "classpath:bean04.xml")
  14. public class IsolationTest01ServiceImplTest {
  15. @Autowired
  16. private IIsolationTest01Service test01Service;
  17. /**
  18. * 隔离级别演示方法01A
  19. * 用户不存在新增该用户
  20. */
  21. @Test
  22. public void save01ATest() {
  23. test01Service.save01A("张三112");
  24. }
  25. /**
  26. * 隔离级别演示方法01B
  27. * 用户存在修改用户账户余额
  28. */
  29. @Test
  30. public void update01BTest() {
  31. test01Service.update01B("张三11");
  32. }
  33. /**
  34. * 隔离级别演示方法01C
  35. * 根据用户名连续查询2次
  36. * 不可重复读 :一个事务读到了另一个事务已经提交的 update 的数据导致多次查询结果不一致.
  37. */
  38. @Test
  39. public void select01CTest() {
  40. test01Service.select01C("张三112");
  41. }
  42. }

测试逻辑与参数配置如下:

类别测试 定义 测试方法启动步骤 save01A(隔离级别) update01B(隔离级别) select01C(隔离级别)
脏读 一个事务读到了另一个事务的未提交的数据 1.启动save01ATest(),在执行了保存sql语句后断点2.然后启动select01CTest(),断点观察会发现已经读取到了没有提交的数据 DEFAULT READ_UNCOMMITTED
不可重复读 一个事务读到了另一个事务已经提交的 update 的数据导致多次查询结果不一致. 1.启动select01CTest,执行到第一次查询时断点;2.然后启动update01BTest方法,直接执行完该方法;3.最后放开步骤1中的断点,发现再次读取的数据已经发生改变 DEFAULT READ_COMMITTED
虚幻读 一个事务读到了另一个事务已经提交的 insert 的数据导致多次查询结果不一致. 1.启动select01CTest,执行到第一次查询无数据时断点;2.然后启动save01ATest方法,直接执行完该方法;3.最后放开步骤1中的断点,发现再次读取时已经有了数据 DEFAULT REPEATABLE_READ

补充:
1.spring事务本质上使用数据库事务,而数据库事务本质上使用数据库锁,所以spring事务本质上使用数据库锁,开启spring事务意味着使用数据库锁,
因此要想深入学习好spring事务,应该先系统化的学习好mysql的事务,如果之前没有系统化的学习过mysql事务,可以学习之前讲的《深入学习mysql实战》课程;
2.如何查看mysql事务隔离级别

  1. 查看mysql事务隔离级别
  2. 切换到performance_schema database下,
  3. 执行sql语句:
  4. mysql> select * from global_variables where variable_name like "%tx%";
  5. +---------------+-----------------+
  6. | VARIABLE_NAME | VARIABLE_VALUE |
  7. +---------------+-----------------+
  8. | TX_ISOLATION | REPEATABLE-READ |
  9. +---------------+-----------------+
  10. 1 row in set
  11. mysql>

5.3.timeout:超时时间

(1)事务需要在一定时间内进行提交,如果不提交进行回滚(2)默认值是 -1 ,设置时间以秒单位进行计算
测试比较简单,请自己测试

5.4.readOnly:是否只读

(1)读:查询操作,写:添加修改删除操作(2)readOnly 默认值 false,表示可以查询,可以添加修改删除操作(3)设置 readOnly 值是 true,设置成 true 之后,只能查询
测试比较简单,请自己测试

5.5.rollbackFor:回滚

(1)设置出现哪些异常进行事务回滚
测试比较简单,请自己测试

5.6.noRollbackFor:不回滚

(1)设置出现哪些异常不进行事务回滚
测试比较简单,请自己测试

6.总结

到此spring事务相关的核心技术已经讲解完毕,
如果看博客理解不是很深入,为了更好的讲解清楚spring事务,该博客已经录制成视频讲解,可以结合视频进行学习,
如果还是有不理解的地方可以单独问我或者获取课程中使用到的源码。

完美!