13、声明式事务

本文深入探讨Spring框架中的事务管理机制,包括事务的概念、ACID属性、编程式与声明式事务管理的区别,以及如何使用注解配置事务。通过转账示例,详细展示了Spring事务管理在项目开发中的应用。

13.1、回顾事务

  • 事务在项目开发中非常重要,涉及到数据的一致性的问题,不容马虎!
  • 事务管理是企业级应用程序开发中必备技能,用来确保数据的完整性和一致性

事务就是把一系列的动作当成一个独立的工作单元,这些动作要么全部完成,要么全部不起作用

事务四个属性ACID

  1. 原子性(atomicity)
      事务是原子性操作,由一系列动作组成,事务的原子性确保动作要么全部完成,要么完全不起作用。
  2. 一致性(consistency)
      一旦所有事务动作完成,事务就要提交。数据和资源处于一种满足业务规则的一 致性状态中。
  3. 隔离性(isolation)
      可能多个事务同时处理相同的数据,因此每个事务都应该与其他事务隔离开来,防止数据损坏
  4. 持久性(durability)
      事务一旦完成,无论系统发生什么错误,结果都不会受到影响。通常情况下,事务的结果被写到持久化存储器中。

13.2、测试

我们以转钱为例子(使用的是JabcTemplate进行测试)

导包(不倒包也可以用)

<dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-webmvc</artifactId>
      <version>5.2.6.RELEASE</version>
  </dependency>
  <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-jdbc</artifactId>
      <version>5.1.10.RELEASE</version>
  </dependency>
  <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
  </dependency>
  <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>5.1.47</version>
  </dependency>
  <dependency>
      <groupId>com.mchange</groupId>
      <artifactId>c3p0</artifactId>
      <version>0.9.5.5</version>
  </dependency>
  <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.9.4</version>
  </dependency>
  <!-- log4j -->
  <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.17</version>
  </dependency>
<!--这个可导可不导-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-tx</artifactId>
    <version>5.2.8.RELEASE<ersion>
</dependency>

编写配置文件

<?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.chen.dao"/>
    <context:component-scan base-package="com.chen.service"/>

	<!--获取db.properties-->
    <context:property-placeholder location="classpath*:db.properties"/>

    <bean class="com.mchange.v2.c3p0.ComboPooledDataSource" id="dataSource">
        <property name="driverClass" value="${jdbc.driver}"/>
        <property name="jdbcUrl" value="${jdbc.url}"/>
        <property name="user" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
    </bean>
	<!--JdbcTemplate-->
    <bean class="org.springframework.jdbc.core.JdbcTemplate" id="jdbcTemplate">
        <property name="dataSource" ref="dataSource"/>
    </bean>
</beans>

编写实体类

public class Counts {

    private int id;
    private String name;
    private Double count;
	// set/get...

}

CountsDao接口

public interface CountsDao {

    /**
     * 转入
     * @param inId 转入人的id
     * @param money 转入的金额
     */
    public void inMoney(Integer inId, Double money);

    /**
     * 转出
     * @param outId 转出人的id
     * @param money 转出的金额
     */
    public void outMoney(Integer outId, Double money);

}

CountsDao接口的实现类CountsDaoImpl

@Repository
public class CountsDaoImpl implements CountsDao {

    @Autowired
    JdbcTemplate jdbcTemplate;

    public void inMoney(Integer inId, Double money) {
        jdbcTemplate.update("update ssmbuild.counts set count=count+? where id = ?",money,inId);
    }

    public void outMoney(Integer outId, Double money) {
        System.out.println(1/0); // 注意这里是我们故意的
        jdbcTemplate.update("update ssmbuild.counts set count=count-? where id = ?",money,outId);
    }
}

我们在里面故意写了System.out.println(1/0)

编写CountsService接口

public interface CountsService {
    /**
     * 
     * @param inId 转入人的id
     * @param outId 转出人的id
     * @param money 转出的钱数
     */
    public void transferMoney(Integer inId, Integer outId, Double money);
}

编写CountsService接口的实现类CountsServiceImpl

@Service
public class CountsServiceImpl implements CountsService {

    @Autowired
    CountsDao countsDao;


    public void transferMoney(Integer inId, Integer outId, Double money) {
        // 转入
        countsDao.inMoney(inId,money);
        // 转出
        countsDao.outMoney(outId,money);
    }
}

测试

public class MyTest {

    public CountsService getCountsService(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        CountsService bean = context.getBean(CountsService.class);
        return bean;
    }

    @Test
    public void test1(){
        CountsService countsService = getCountsService();
        // 2号给1号转500块钱
        countsService.transferMoney(1,2,500.0);
        System.out.println("转账成功");
    }
}

报错:我们写的错误生效了
在这里插入图片描述

结果:转入的人的钱数增多了,但是转出的人的钱数没有变!

没有进行事务的管理;我们想让他们都成功才成功,有一个失败,就都失败,我们就应该需要事务!

以前我们都需要自己手动管理事务,十分麻烦!

但是Spring给我们提供了事务管理,我们只需要配置即可;

13.3、Spring中的事务管理

Spring在不同的事务管理API之上定义了一个抽象层,使得开发人员不必了解底层的事务管理API就可以使用Spring的事务管理机制。Spring支持编程式事务管理和声明式事务管理。

编程式事务管理

  • 将事务管理代码嵌入到业务方法中来控制事务的提交和回滚
  • 缺点:必须在每个事务操作业务逻辑中包含额外的事务管理代码

声明式事务管理

  • 一般情况下比编程式事务好用
  • 将事务管理代码从业务方法中分离出来,以声明的方式来实现事务管理
  • 将事务管理作为横切关注点,通过aop方法模块化。Spring中通过Spring AOP框架支持声明式事务管理

使用Spring管理事务,注意头文件的约束导入:tx

xmlns:tx="http://www.springframework.org/schema/tx"

http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">

事务管理器

  • 无论使用Spring的哪种事务管理策略(编程式或声明式)事务管理都是必须的。
  • 就是Spring的核心事务管理抽象,管理封装了一组独立于技术的方法。

JDBC事务

    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>

配置好事务管理器后我们需要去配置事务的通知

    <!-- 结合aop实现事务织入 -->
    <!-- 配置事务通知 -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <!-- 给哪些方法配置事务 -->
       <!-- 配置事务的传播特性 了解即可 propagation 默认就是REQUIRED-->
        <tx:attributes>
            <!--transferMoney这个方法的事务-->
            <tx:method name="transferMoney" propagation="REQUIRED"/>

            <!--以add开头的方法,遇见异常后回滚-->
            <!--<tx:method name="add*" propagation="REQUIRED" rollback-for="Throwable"/>-->
            <!--以select开头的方法只读-->
            <!--<tx:method name="select*" propagation="REQUIRED" read-only="true"/>-->
        </tx:attributes>
    </tx:advice>

spring事务传播特性:

事务传播行为就是多个事务方法相互调用时,事务如何在这些方法间传播。spring支持7种事务传播行为:

  • propagation_requierd:如果当前没有事务,就新建一个事务,如果已存在一个事务中,加入到这个事务中,这是最常见的选择。
  • propagation_supports:支持当前事务,如果没有当前事务,就以非事务方法执行。
  • propagation_mandatory:使用当前事务,如果没有当前事务,就抛出异常。
  • propagation_required_new:新建事务,如果当前存在事务,把当前事务挂起。
  • propagation_not_supported:以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。
  • propagation_never:以非事务方式执行操作,如果当前事务存在则抛出异常。
  • propagation_nested:如果当前存在事务,则在嵌套事务内执行。如果当前没有事务,则执行与propagation_required类似的操作

Spring 默认的事务传播行为是 PROPAGATION_REQUIRED,它适合于绝大多数的情况。

假设 ServiveX#methodX() 都工作在事务环境下(即都被 Spring 事务增强了),假设程序中存在如下的调用链:Service1#method1()->Service2#method2()->Service3#method3(),那么这 3 个服务类的 3 个方法通过 Spring 的事务传播机制都工作在同一个事务中。

就好比,我们刚才的几个方法存在调用,所以会被放在一组事务当中!

配置AOP

导入aop的头文件!

注意:事务是针对业务层的

<!-- 配置事务织入 -->
<aop:config>
    <aop:pointcut id="pointcut" expression="execution(* com.chen.service..*.*(..))"/>
    <aop:advisor advice-ref="advice" pointcut-ref="pointcut"/>
</aop:config>

测试

删掉刚才插入的数据,再次测试!

public class MyTest {

    public CountsService getCountsService(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        CountsService bean = context.getBean(CountsService.class);
        return bean;
    }

    @Test
    public void test1(){
        CountsService countsService = getCountsService();
        // 2号给1号转500块钱
        countsService.transferMoney(1,2,500.0);
        System.out.println("转账成功");
    }
}

再次测试,我们发现,报错依旧,但是转入人的钱数没有增多,并且转出人的签署也没有减少,这就是我们要的效果!

为什么需要配置事务?

  • 如果不配置,就需要我们手动提交控制事务;
  • 事务在项目开发过程非常重要,涉及到数据的一致性的问题,不容马虎!

13.4、使用注解配置事务

  1. 修改applicationContext.xml文件
<?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"
       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/tx
       http://www.springframework.org/schema/tx/spring-tx.xsd">

    <context:component-scan base-package="com.chen.dao"/>
    <context:component-scan base-package="com.chen.service"/>

    <context:property-placeholder location="classpath*:db.properties"/>

    <bean class="com.mchange.v2.c3p0.ComboPooledDataSource" id="dataSource">
        <property name="driverClass" value="${jdbc.driver}"/>
        <property name="jdbcUrl" value="${jdbc.url}"/>
        <property name="user" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
    </bean>

    <bean class="org.springframework.jdbc.core.JdbcTemplate" id="jdbcTemplate">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <!--配置事务-->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>
    
    <!-- 开始事务的注解驱动 -->
    <tx:annotation-driven transaction-manager="transactionManager"/>
</beans>
  1. 修改CountsServiceImpl.java
@Service
public class CountsServiceImpl implements CountsService {

    @Autowired
    CountsDao countsDao;

    @Transactional(rollbackFor = Throwable.class,propagation = Propagation.REQUIRED)
    public void transferMoney(Integer inId, Integer outId, Double money) {
        // 转入
        countsDao.inMoney(inId,money);
        // 转出
        countsDao.outMoney(outId,money);
    }

    @Transactional(readOnly = true)
    public List<Counts> queryAll() {
        // 查询所有人
       return countsDao.queryAll();
    }
}

学习视频链接:https://www.bilibili.com/video/BV1WE411d7Dv?p=27

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值