文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何在Spring中使用声明式事务管理

2023-05-31 10:24

关注

本篇文章为大家展示了如何在Spring中使用声明式事务管理,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

基于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>

对应的持久层代码

@Repositorypublic 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);  }}

业务层代码

@Servicepublic class AccountService {@Autowiredprivate 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)@Servicepublic 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中使用声明式事务管理,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯