欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Spring学习之声明式事务管理

程序员文章站 2023-08-15 22:50:42
前言 在前面的小节中,我们学习了关于事务的概念以及事务管理的重要性,并且通过编程使用spring的编程式事务管理进行操作,加深对事务管理的重要性的学习,不过,由于编程式的...

前言

在前面的小节中,我们学习了关于事务的概念以及事务管理的重要性,并且通过编程使用spring的编程式事务管理进行操作,加深对事务管理的重要性的学习,不过,由于编程式的事务管理使用起来不是很方便,所以在日常的开发中基本不怎么使用,接下来的内容我们将学习使用spring的声明式事务管理,这里有一个地方需要明白的是,spring的声明式事务管理的实现方式其实是通过aop的方式来实现的,也就是为原始的事务管理对象创建代理对象,从而实现事务管理增强的

基于transactionproxyfactorybean的事务管理配置

经过前面的学习,可以知道,spring中配置aop有三种方式,分别是通过proxyfactorybean创建代理,通过xml的方式以及通过注解的方式,既然spring事务管理是通过aop来实现的,那么对应的就有三种不同的方式,首先来看下基于transactionproxyfactorybean的管理方式

首先是spring的配置文件

<?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="cn.xuhuanfeng.transaction"/>

  <!--配置数据源,这里采用dbcp-->
  <bean id="datasource" class="org.apache.commons.dbcp.basicdatasource">
    <property name="url" value="jdbc:mysql://localhost:3306/spring"/>
    <property name="driverclassname" value="com.mysql.jdbc.driver"/>
    <property name="username" value="root"/>
    <property name="password" value="huanfeng"/>
  </bean>

  <!--配置jdbctemplate-->
  <bean id="jdbctemplate" class="org.springframework.jdbc.core.jdbctemplate">
    <!--注入数据源-->
    <property name="datasource" ref="datasource"/>
  </bean>

  <!--配置事务管理-->
  <bean id="transactionmanager" class="org.springframework.jdbc.datasource.datasourcetransactionmanager">
    <!--注入数据源-->
    <property name="datasource" ref="datasource"/>
  </bean>
  <!--为accountservice创建代理类-->
  <bean id="accountserviceproxy" class="org.springframework.transaction.interceptor.transactionproxyfactorybean">
    <!--注入事务管理-->
    <property name="transactionmanager" ref="transactionmanager"/>
    <!--注入目标类,也就是所要增强的类-->
    <property name="target" ref="accountservice"/>
    <!--配置相应的事务属性-->
    <property name="transactionattributes">
      <props>
        <!--指定不同的事务的处理方式
          配置格式:事务传播方式,隔离级别,readonly,-exception,+exception
          传播行为是唯一必须配置的,其他的如果不配置则使用默认
          -exception表示如果发生对应的异常,则回滚事务
          +exception表示即使发生对应的异常,也依旧提交事务
        -->
        <prop key="transfer">propagation_required,isolation_default</prop>
      </props>
    </property>
  </bean>
</beans>

对应的持久层代码

@repository
public class accountdao {

  @autowired
  private jdbctemplate jdbctemplate;

  public void transferin(string name, double money){
    string sql = "update account set money = money + ? where name = ?";

    jdbctemplate.update(sql, money, name);
  }

  public void transferout(string name, double money){
    string sql = "update account set money = money - ? where name = ?";

    jdbctemplate.update(sql, money, name);
  }
}

业务层代码

@service
public class accountservice {

@autowired
private accountdao accountdao;

public void transfer(final string fromname,final string toname,final double money){

  accountdao.transferout(fromname, money);
  int d = 1/0; // 除0异常
  accountdao.transferin(toname, money);
}
}

通过上面的配置之后,当我们在使用accountservice的时候,由于获取的对象的代理后的对象,所以spring会自动进行事务的监管,而我们需要做的就是配置对应的事务传播类型以及事务管理级别等的信息,这种方式明显对代码以及没有什么侵入了,但是使用这种方式意味着没有都需要为不同的服务对象创建对应的代理对象,这其实是不太方便的,接下来我们来看下使用aop/tx命名空间来进行配置的方式。

基于aop/tx命名空间的事务管理配置

由于是对上面的业务操作进行事务管理,而且经过上一小节的学习,我们也基本熟悉了该业务,所以这里直接演示配置的代码

<?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" xmlns:aop="http://www.springframework.org/schema/aop"
    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 
    http://www.springframework.org/schema/aop 
    http://www.springframework.org/schema/aop/spring-aop.xsd">

  <!--
    这里配置同前,故省略
  -->

  <!--aop配置-->
  <aop:config>
    <!--配置切点-->
    <aop:pointcut id="servicemethod" expression="execution(* cn.xuhuanfeng.transaction.accountservice.*(..))"/>
    <!--对应的切面-->
    <aop:advisor advice-ref="txadvice" pointcut-ref="servicemethod"/>
  </aop:config>

  <!--配置事务增强-->
  <tx:advice id="txadvice" transaction-manager="transactionmanager">
    <tx:attributes>
      <!--配置对应的事务管理,其中name为与事务相关的方法名,可以使用通配符-->
      <tx:method name="transfer*" isolation="default" propagation="required"/>
    </tx:attributes>
  </tx:advice>

</beans>

可以看到,通过xml配置的方式,可以更加灵活地进行事务管理

基于注解的事务管理配置

基于注解的配置方式提供了更加简单的配置方式,只需要使用@transactional注解进行标注,并且开启对应的扫描即可。

// 配置相应的隔离级别、事务传播等
@transactional(isolation = isolation.default, propagation = propagation.required)
@service
public class accountservice {
  // 省略其他内容
}

spring配置文件也相对比较简单了

<?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">

  <!--数据源配置等同上-->
  <!--通过tx命名空间,开启主机自动扫描,并且注入事务管理器-->
  <tx:annotation-driven transaction-manager="transactionmanager"/>
</beans>

可以看到,通过注解配置的方式是最简单的配置方式,在日常的开发中,这种方式的使用的频率也比较高

总结

本小节主要学习了spring声明式事务管理的配置,包括了使用transactionproxyfactorybean、通过aop/tx命名空间的xml配置以及基于注解的配置方式,其中,基于注解的配置方式是比较简单的,也是使用频率比较高的一种

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。