`
JAVA-JVM
  • 浏览: 13292 次
  • 性别: Icon_minigender_1
  • 来自: 陕西
社区版块
存档分类
最新评论

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共享一个代理基类

  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.     
  • 大小: 51.5 KB
分享到:
评论
1 楼 hzxlb910 2013-08-05  
背景要换个清淡点的,太深了,文章看不清

相关推荐

    spring 事务配置的五种方法

    本文将详细介绍五种常见的 Spring 事务配置方法,并结合示例代码进行解析。 #### 二、每种配置方法概述 1. **每个 Bean 都有一个代理** 2. **所有 Bean 共享一个代理基类** 3. **拦截器** 4. **`tx`标签拦截器** 5...

    Spring事务配置的五种方式

    以下将详细阐述五种主要的 Spring 事务配置方法。 1. **基于代理的事务配置 (Proxy-based Transaction Management)** 在第一种配置方式中,每个 Bean 都有一个代理,这是基于 AOP(面向切面编程)的事务管理。...

    spring事务配置的五种方式

    这种方式是最直接的事务配置方法之一。它为每个业务逻辑Bean创建一个代理对象,该代理对象包含了事务逻辑。这样做的好处是事务逻辑清晰且易于理解,但缺点是每个Bean都需要单独配置事务代理,增加了配置文件的复杂度...

    spring事务配置的5中方式

    Spring 事务配置是Spring框架中不可或缺的一部分,它用于管理和协调应用程序中的事务边界,确保数据的一致性和完整性。在Spring中,事务配置主要涉及到三个核心组件:DataSource、TransactionManager和代理机制。...

    Spring声明式事务配置管理方法

    Spring声明式事务配置管理方法

    Spring事务原理、Spring事务配置的五种方式

    Spring事务原理和配置 Spring事务原理是指Spring框架中的一种机制,用于管理事务,并提供了多种配置方式。事务是指一系列的操作,作为一个整体执行,如果其中某个操作失败,整个事务将回滚。Spring事务原理围绕着两...

    Spring事务配置的五种方法

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

    Spring 事务配置详解(多种配置方法)

    本文将详细解析Spring事务配置的多种方法,包括XML配置和注解方式。 首先,理解Spring事务配置的基本组件至关重要。这些组件主要包括: 1. **DataSource**:数据源,它是连接数据库的桥梁,负责管理与数据库的连接...

    spring几种事务配置详解【精】

    本文将深入探讨Spring中的几种事务配置方式,帮助开发者更好地理解和运用。 1. **编程式事务管理** 编程式事务管理是在代码中显式调用事务API来控制事务的开始、提交、回滚等操作。这种方式直接在业务逻辑代码中...

    spring事务

    除了上述两种方式外,还有三种常用的Spring事务配置方法,包括: 1. **基于XML的声明式事务**:通过在XML配置文件中使用`&lt;tx:advice&gt;`和`&lt;tx:method&gt;`元素来定义事务切面和事务属性,适用于需要显式控制事务边界的...

    Spring 事务配置

    Spring 事务配置SpringSpring 事务配置Spring 事务配置Spring 事务配置Spring 事务配置Spring 事务配置

    Spring xml 配置案例

    接下来,我们来看五种Spring事务配置方法: 1. 每个Bean都有一个代理 在这种配置中,每个需要事务管理的Bean都会被一个代理包围。配置示例如下: ```xml &lt;bean id="userDaoTarget" class="com.bluesky.spring.dao....

    Spring 事务配置解惑 - GitChat

    Spring 事务配置解惑.html 抓下来打包成了HTML文件, 方便离线观看

    详细说明spring事务配置的5种方式

    本文将详细介绍Spring事务配置的五种方式,帮助你深入理解如何在Spring应用中管理事务。 1. **基于XML的声明式事务管理** 第一种方式是在每个Bean上使用代理来实现事务管理。首先,配置`DataSource`,通常是`...

    Spring AOP配置事务方法

    Spring AOP 配置事务方法 Spring AOP(Aspect-Oriented Programming,面向方面编程)是一种编程范式,它允许开发者在不修改源代码的情况下,增强和修改应用程序的行为。 Spring AOP 提供了一种灵活的方式来实现事务...

    spring事务配置管理

    spring事务配置管理

Global site tag (gtag.js) - Google Analytics