6、事务操作

6.1 事务操作(事务概念)

(1)什么是事务

① 事务是数据库操作最基本单元,逻辑上一组操作,要么都成功,如果有一个失败所有操作都失败

② 典型场景:银行转账

  • lucy 转账 100 元 给 mary
  • lucy 少 100,mary 多 100

(2)事务四个特性(ACID)

① 原子性

② 一致性

③ 隔离性

④ 持久性

6.2 事务操作(搭建事务操作环境)

在这里插入图片描述
(1)创建数据库表,添加记录

CREATE TABLE t_account(
	id VARCHAR(20) PRIMARY KEY,
	username VARCHAR(50),
	money INT 
);

INSERT INTO t_account VALUES('1','lucy',1000),('2','mary',1000);

在这里插入图片描述
(2)创建 service,搭建 dao,完成对象创建和注入关系

  • service 注入 dao,在 dao 注入 JdbcTemplate,在 JdbcTemplate 注入 DataSource
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
    <!-- 组件扫描 -->
    <context:component-scan base-package="com.mycode"></context:component-scan>

    <!-- 数据库连接池 -->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" destroy-method="close">
        <property name="url" value="jdbc:mysql:///user_db" />
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
    </bean>

    <!-- JdbcTemplate对象 -->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
</beans>
@Service
public class UserService {
    
    
    // 注入 dao
    @Autowired
    private UserDao userDao;
}
@Repository
public class UserDaoImpl implements UserDao {
    
    
    // 注入 JdbcTemplate
    @Autowired
    private JdbcTemplate jdbcTemplate;
}

(3)在 dao 创建两个方法:多钱和少钱的方法,在 service 创建方法(转账的方法)

@Repository
public class UserDaoImpl implements UserDao {
    
    
    // 注入 JdbcTemplate
    @Autowired
    private JdbcTemplate jdbcTemplate;

    // lucy转账100给mary
    // 少钱
    @Override
    public void addMoney() {
    
    
        String sql = "update t_account set money=money-? where username=?";
        jdbcTemplate.update(sql,100,"lucy");
    }

    // 多钱
    @Override
    public void reduceMoney() {
    
    
        String sql = "update t_account set money=money+? where username=?";
        jdbcTemplate.update(sql,100,"mary");
    }
}
@Service
public class UserService {
    
    
    // 注入 dao
    @Autowired
    private UserDao userDao;

    // 转账操作
    public void accountMoney() {
    
    
        // lucy少100
        userDao.reduceMoney();

        // mary多100
        userDao.addMoney();
    }
}

(4)上面代码,如果正常执行没有问题的,但是如果代码执行过程中出现异常,有问题

	// 转账操作
    public void accountMoney() {
    
    
        // lucy少100
        userDao.reduceMoney();

        // 模拟异常
        int i = 10/0;

        // mary多100
        userDao.addMoney();
    }

① 上面问题如何解决呢?

  • 使用事务进行解决

② 事务操作过程
在这里插入图片描述

6.3 事务操作(Spring 事务管理介绍)

(1)事务添加到 JavaEE 三层结构里面 Service 层(业务逻辑层)

(2)在 Spring 进行事务管理操作

  • 有两种方式:编程式事务管理和声明式事务管理(使用)

(3)声明式事务管理

① 基于注解方式(使用)

② 基于 xml 配置文件方式

(4)在 Spring 进行声明式事务管理,底层使用 AOP 原理

(5)Spring 事务管理 API

  • 提供一个接口,代表事务管理器,这个接口针对不同的框架提供不同的实现类
    在这里插入图片描述

6.4 事务操作(注解声明式事务管理)

(1)在 spring 配置文件配置事务管理器

	<!-- 创建事务管理器 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <!-- 注入数据源 -->
        <property name="dataSource" ref="dataSource"></property>
    </bean>

(2)在spring配置文件,开启事务注解

① 在 spring 配置文件引入名称空间 tx

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
                           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
                           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

② 开启事务注解

	<!-- 开启事务注解 -->
    <tx:annotation-driven transaction-manager="transactionManager"></tx:annotation-driven>

(3)在 service 类上面(或者 service 类里面方法上面)添加事务注解

① @Transactional,这个注解添加到类上面,也可以添加方法上面

② 如果把这个注解添加类上面,这个类里面所有的方法都添加事务

③ 如果把这个注解添加方法上面,为这个方法添加事务

@Service
@Transactional
public class UserService {
    
    

6.5 事务操作(声明式事务管理参数配置)

在 service 类上面添加注解 @Transactional,在这个注解里面可以配置事务相关参数
在这里插入图片描述
① propagation:事务传播行为

  • 多事务方法直接进行调用,这个过程中事务是如何进行管理的
    在这里插入图片描述
    在这里插入图片描述
@Service
@Transactional(propagation = Propagation.REQUIRED) // 不写则默认就是它
public class UserService {
    
    

② isolation:事务隔离级别

  • 事务有特性成为隔离性,多事务操作之间不会产生影响。不考虑隔离性产生很多问题

  • 有三个读问题:脏读、不可重复读、虚(幻)读

脏读:一个未提交事务读取到另一个未提交事务的数据
在这里插入图片描述
不可重复读:一个未提交事务读取到另一提交事务修改数据
在这里插入图片描述
虚读:一个未提交事务读取到另一提交事务添加数据

  • 解决:通过设置事务隔离级别,解决读问题
    在这里插入图片描述
    在这里插入图片描述

③ timeout:超时时间

  • 事务需要在一定时间内进行提交,如果不提交进行回滚
  • 默认值是 -1 ,表示不超时,设置时间以秒单位进行计算

④ readOnly:是否只读

  • 读:查询操作,写:添加修改删除操作
  • readOnly 默认值 false,表示可以查询,可以添加修改删除操作
  • 设置 readOnly 值是 true,设置成 true 之后,只能查询

⑤ rollbackFor:回滚

  • 设置出现哪些异常进行事务回滚

⑥ noRollbackFor:不回滚

  • 设置出现哪些异常不进行事务回滚

6.6 事务操作(XML 声明式事务管理)

在 spring 配置文件中进行配置

  • 第一步 配置事务管理器
  • 第二步 配置通知
  • 第三步 配置切入点和切面
	<!-- 1、创建事务管理器 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <!-- 注入数据源 -->
        <property name="dataSource" ref="dataSource"></property>
    </bean>

    <!-- 2、配置通知 -->
    <tx:advice id="txadvice">
        <!--配置事务参数-->
        <tx:attributes>
            <!--指定哪种规则的方法上面添加事务-->
            <tx:method name="accountMoney" propagation="REQUIRED"/>
            <!--<tx:method name="account*"/>-->
        </tx:attributes>
    </tx:advice>

    <!-- 3、配置切入点和切面 -->
    <aop:config>
        <!-- 配置切入点 -->
        <aop:pointcut id="pt" expression="execution(* com.mycode.spring5.service.UserService.*(..))"/>
        <!--配置切面-->
        <aop:advisor advice-ref="txadvice" pointcut-ref="pt"/>
    </aop:config>

6.7 事务操作(完全注解声明式事务管理)

创建配置类,使用配置类替代 xml 配置文件

@Configuration // 配置类
@ComponentScan(basePackages = "com.mycode") //组件扫描
@EnableTransactionManagement    //开启事务
public class TxConfig {
    
    

    // 创建数据库连接池
    @Bean
    public DruidDataSource getDruidDataSource() {
    
    
        DruidDataSource dataSource = new DruidDataSource();
        dataSource.setDriverClassName("com.mysql.jdbc.Driver");
        dataSource.setUrl("jdbc:mysql:///user_db");
        dataSource.setUsername("root");
        dataSource.setPassword("123456");
        return dataSource;
    }

    // 创建 JdbcTemplate 对象
    @Bean
    public JdbcTemplate getJdbcTemplate(DataSource dataSource) {
    
    
        // 到 ioc 容器中根据类型找到 dataSource
        JdbcTemplate jdbcTemplate = new JdbcTemplate();
        // 注入 dataSource
        jdbcTemplate.setDataSource(dataSource);
        return jdbcTemplate;
    }

    // 创建事务管理器对象
    @Bean
    public DataSourceTransactionManager getDataSourceTransactionManager(DataSource dataSource) {
    
    
        DataSourceTransactionManager transactionManager = new DataSourceTransactionManager();
        transactionManager.setDataSource(dataSource);
        return transactionManager;
    }
}

猜你喜欢

转载自blog.csdn.net/Lu1048728731/article/details/111990925