Spring事务配置的五种方式

本文深入探讨了Spring事务配置的核心概念,并详细介绍了三种常见的事务管理方式及五种具体的配置方法,旨在帮助开发者更好地理解和掌握Spring事务配置。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

段时间对Spring事务配置做了比较深入的研究,在此之间对Spring事务配置虽说也配置过,但是一直没有一个清楚的认识。通过这次的学习发觉Spring事务配置只要把思路理清,还是比较好掌握的。

总结如下:

Spring配置文件中关于Spring事务配置总是由三个组成部分,分别是DataSource、TransactionManager和代理机制这三部分,无论哪种配置方式,一般变化的只是代理机制这部分。

DataSource、TransactionManager这两部分只是会根据数据访问方式有所变化,比如使用Hibernate进行数据访问时,DataSource实际为SessionFactory,TransactionManager的实现为 HibernateTransactionManager。

具体如下图:



根据代理机制的不同,总结了五种Spring事务的配置方式,配置文件如下:

第一种方式:每个Bean都有一个代理

  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" 
  5.     xmlns:aop="http://www.springframework.org/schema/aop" 
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  7.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  8.            http://www.springframework.org/schema/context  
  9.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  10.            http://www.springframework.org/schema/aop                                        http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> 
  11.     <bean id="sessionFactory"   
  12.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">   
  13.         <property name="configLocation" value="classpath:hibernate.cfg.xml" />   
  14.         <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" /> 
  15.     </bean>   
  16.     <!-- 定义事务管理器(声明式的事务) -->   
  17.     <bean id="transactionManager" 
  18.         class="org.springframework.orm.hibernate3.HibernateTransactionManager"> 
  19.         <property name="sessionFactory" ref="sessionFactory" /> 
  20.     </bean> 
  21.     <!-- 配置DAO --> 
  22.     <bean id="userDaoTarget" class="com.bluesky.spring.dao.UserDaoImpl"> 
  23.         <property name="sessionFactory" ref="sessionFactory" /> 
  24.     </bean> 
  25.     <bean id="userDao"   
  26.         class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">   
  27.            <!-- 配置事务管理器 -->   
  28.            <property name="transactionManager" ref="transactionManager" />      
  29.         <property name="target" ref="userDaoTarget" />   
  30.          <property name="proxyInterfaces" value="com.bluesky.spring.dao.GeneratorDao" /> 
  31.         <!-- 配置事务属性 -->   
  32.         <property name="transactionAttributes">   
  33.             <props>   
  34.                 <prop key="*">PROPAGATION_REQUIRED</prop> 
  35.             </props>   
  36.         </property>   
  37.     </bean>   
  38. </beans> 

第二种方式:所有Bean共享一个父类bean

  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" 
  5.     xmlns:aop="http://www.springframework.org/schema/aop" 
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  7.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  8.            http://www.springframework.org/schema/context  
  9.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  10.            http://www.springframework.org/schema/aop                                http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> 
  11.     <bean id="sessionFactory"   
  12.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">   
  13.         <property name="configLocation" value="classpath:hibernate.cfg.xml" />   
  14.         <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" /> 
  15.     </bean>   
  16.     <!-- 定义事务管理器(声明式的事务) -->   
  17.     <bean id="transactionManager" 
  18.         class="org.springframework.orm.hibernate3.HibernateTransactionManager"> 
  19.         <property name="sessionFactory" ref="sessionFactory" /> 
  20.     </bean> 
  21.     <bean id="transactionBase"   
  22.             class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"   
  23.             lazy-init="true" abstract="true">   
  24.         <!-- 配置事务管理器 -->   
  25.         <property name="transactionManager" ref="transactionManager" />   
  26.         <!-- 配置事务属性 -->   
  27.         <property name="transactionAttributes">   
  28.             <props>   
  29.                 <prop key="*">PROPAGATION_REQUIRED</prop>   
  30.             </props>   
  31.         </property>   
  32.     </bean> 
  33.     <!-- 配置DAO --> 
  34.     <bean id="userDaoTarget" class="com.bluesky.spring.dao.UserDaoImpl"> 
  35.         <property name="sessionFactory" ref="sessionFactory" /> 
  36.     </bean> 
  37.     <bean id="userDao" parent="transactionBase" >   
  38.         <property name="target" ref="userDaoTarget" />    
  39.     </bean> 
  40. </beans> 

第三种方式:使用拦截器

  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" 
  5.     xmlns:aop="http://www.springframework.org/schema/aop" 
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  7.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  8.            http://www.springframework.org/schema/context  
  9.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  10.            http://www.springframework.org/schema/aop                                http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> 
  11.     <bean id="sessionFactory"   
  12.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">   
  13.         <property name="configLocation" value="classpath:hibernate.cfg.xml" />   
  14.         <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" /> 
  15.     </bean>   
  16.     <!-- 定义事务管理器(声明式的事务) -->   
  17.     <bean id="transactionManager" 
  18.         class="org.springframework.orm.hibernate3.HibernateTransactionManager"> 
  19.         <property name="sessionFactory" ref="sessionFactory" /> 
  20.     </bean>   
  21.     
  22.     <bean id="transactionInterceptor"   
  23.         class="org.springframework.transaction.interceptor.TransactionInterceptor">   
  24.         <property name="transactionManager" ref="transactionManager" />   
  25.         <!-- 配置事务属性 -->   
  26.         <property name="transactionAttributes">   
  27.             <props>   
  28.                 <prop key="*">PROPAGATION_REQUIRED</prop>   
  29.             </props>   
  30.         </property>   
  31.     </bean> 
  32.     <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">   
  33.         <property name="beanNames">   
  34.             <list>   
  35.                 <value>*Dao</value> 
  36.             </list>   
  37.         </property>   
  38.         <property name="interceptorNames">   
  39.             <list>   
  40.                 <value>transactionInterceptor</value>   
  41.             </list>   
  42.         </property>   
  43.     </bean>   
  44.     <!-- 配置DAO --> 
  45.     <bean id="userDao" class="com.bluesky.spring.dao.UserDaoImpl"> 
  46.         <property name="sessionFactory" ref="sessionFactory" /> 
  47.     </bean> 
  48. </beans> 

第四种方式:使用tx标签配置的拦截器

  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" 
  5.     xmlns:aop="http://www.springframework.org/schema/aop" 
  6.     xmlns:tx="http://www.springframework.org/schema/tx" 
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  8.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  9.            http://www.springframework.org/schema/context  
  10.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  11.            http://www.springframework.org/schema/aop                                http://www.springframework.org/schema/aop/spring-aop-2.5.xsd  
  12.            http://www.springframework.org/schema/tx                                      http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> 

  13.     <context:annotation-config /> 
  14.     <context:component-scan base-package="com.bluesky" /> 
  15.     <bean id="sessionFactory"   
  16.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">   
  17.         <property name="configLocation" value="classpath:hibernate.cfg.xml" />   
  18.         <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" /> 
  19.     </bean>   
  20.     <!-- 定义事务管理器(声明式的事务) -->   
  21.     <bean id="transactionManager" 
  22.         class="org.springframework.orm.hibernate3.HibernateTransactionManager"> 
  23.         <property name="sessionFactory" ref="sessionFactory" /> 
  24.     </bean> 
  25.     <tx:advice id="txAdvice" transaction-manager="transactionManager"> 
  26.         <tx:attributes> 
  27.             <tx:method name="*" propagation="REQUIRED" /> 
  28.         </tx:attributes> 
  29.     </tx:advice> 
  30.     <aop:config> 
  31.         <aop:pointcut id="interceptorPointCuts" 
  32.             expression="execution(* com.bluesky.spring.dao.*.*(..))" /> 
  33.         <aop:advisor advice-ref="txAdvice" 
  34.             pointcut-ref="interceptorPointCuts" />         
  35.     </aop:config>       
  36. </beans> 

第五种方式:全注解

  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" 
  5.     xmlns:aop="http://www.springframework.org/schema/aop" 
  6.     xmlns:tx="http://www.springframework.org/schema/tx" 
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  8.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  9.            http://www.springframework.org/schema/context  
  10.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  11.            http://www.springframework.org/schema/aop                                http://www.springframework.org/schema/aop/spring-aop-2.5.xsd  
  12.            http://www.springframework.org/schema/tx                                      http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> 

  13.     <context:annotation-config /> 
  14.     <context:component-scan base-package="com.bluesky" /> 
  15.     <tx:annotation-driven transaction-manager="transactionManager"/> 
  16.     <bean id="sessionFactory"   
  17.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">   
  18.         <property name="configLocation" value="classpath:hibernate.cfg.xml" />   
  19.         <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" /> 
  20.     </bean>   
  21.     <!-- 定义事务管理器(声明式的事务) -->   
  22.     <bean id="transactionManager" 
  23.         class="org.springframework.orm.hibernate3.HibernateTransactionManager"> 
  24.         <property name="sessionFactory" ref="sessionFactory" /> 
  25.     </bean> 
  26. </beans> 

此时在DAO上需加上@Transactional注解,如下:

  1. package com.bluesky.spring.dao;  
  2. import java.util.List;  
  3. import org.hibernate.SessionFactory;  
  4. import org.springframework.beans.factory.annotation.Autowired;  
  5. import org.springframework.orm.hibernate3.support.HibernateDaoSupport;  
  6. import org.springframework.stereotype.Component;  
  7. import com.bluesky.spring.domain.User;  
  8. @Transactional  
  9. @Component("userDao")  
  10. public class UserDaoImpl extends HibernateDaoSupport implements UserDao {  
  11.     public List<User> listUsers() {  
  12.         return this.getSession().createQuery("from User").list();  
  13.     }     
  14. }


CH341A编程器是一款广泛应用的通用编程设备,尤其在电子工程和嵌入式系统开发领域中,它被用来烧录各种类型的微控制器、存储器和其他IC芯片。这款编程器的最新版本为1.3,它的一个显著特点是增加了对25Q256等32M芯片的支持。 25Q256是一种串行EEPROM(电可擦可编程只读存储器)芯片,通常用于存储程序代码、配置数据或其他非易失性信息。32M在这里指的是存储容量,即该芯片可以存储32兆位(Mbit)的数据,换算成字节数就是4MB。这种大容量的存储器在许多嵌入式系统中都有应用,例如汽车电子、工业控制、消费电子设备等。 CH341A编程器的1.3版更新,意味着它可以与更多的芯片型号兼容,特别是针对32M容量的芯片进行了优化,提高了编程效率和稳定性。26系列芯片通常指的是Microchip公司的25系列SPI(串行外围接口)EEPROM产品线,这些芯片广泛应用于各种需要小体积、低功耗和非易失性存储的应用场景。 全功能版的CH341A编程器不仅支持25Q256,还支持其他大容量芯片,这意味着它具有广泛的兼容性,能够满足不同项目的需求。这包括但不限于微控制器、EPROM、EEPROM、闪存、逻辑门电路等多种类型芯片的编程。 使用CH341A编程器进行编程操作时,首先需要将设备通过USB连接到计算机,然后安装相应的驱动程序和编程软件。在本例中,压缩包中的"CH341A_1.30"很可能是编程软件的安装程序。安装后,用户可以通过软件界面选择需要编程的芯片类型,加载待烧录的固件或数据,然后执行编程操作。编程过程中需要注意的是,确保正确设置芯片的电压、时钟频率等参数,以防止损坏芯片。 CH341A编程器1.3版是面向电子爱好者和专业工程师的一款实用工具,其强大的兼容性和易用性使其在众多编程器中脱颖而出。对于需要处理25Q256等32M芯片的项目,或者26系列芯片的编程工作,CH341A编程器是理想的选择。通过持续的软件更新和升级,它保持了与现代电子技术同步,确保用户能方便地对各种芯片进行编程和调试。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值