关于Spring事务管理中@Transactional的参数配置

来源:互联网 发布:android照相机源码 编辑:程序博客网 时间:2024/05/29 18:10

spring作为低侵入的Java EE框架之一,能够很好地与其他框架进行整合,其中Spring与hibernate的整合实现的事务管理是常用的一种功能。  所谓事务,就必须具备ACID特性,即原子性、一致性、隔离性和持久性

注意@Transactional 注解及其支持类所提供的功能最低要求使用Java 5(Tiger)。

除了基于XML文件的声明式事务配置外,你也可以采用基于注解式的事务配置方法。直接在Java源代码中声明事务语义的做法让事务声明和将受其影响的代码距离更近了,而且一般来说不会有不恰当的耦合的风险,因为,使用事务性的代码几乎总是被部署在事务环境中。

下面的例子很好地演示了 @Transactional 注解的易用性,随后解释其中的细节。先看看其中的类定义:

[java] view plain copy
 print?
  1. <!-- the service class that we want to make transactional -->  
  2. @Transactional   
  3. public class DefaultFooService implements FooService {   
  4.        Foo getFoo(String fooName);   
  5.        Foo getFoo(String fooName, String barName);   
  6.        void insertFoo(Foo foo);   
  7.        void updateFoo(Foo foo);   
  8. }   

当上述的POJO定义在Spring IoC容器里时,上述bean实例仅仅通过 行xml配置就可以使它具有事务性的。如下:

[html] view plain copy
 print?
  1. <!-- from the file 'context.xml' -->  
  2.               
  3. <?xml version="1.0" encoding="UTF-8"?>  
  4. <beans xmlns="http://www.springframework.org/schema/beans"  
  5.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  6.        xmlns:aop="http://www.springframework.org/schema/aop"  
  7.        xmlns:tx="http://www.springframework.org/schema/tx"  
  8.        xsi:schemaLocation="  
  9.        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd  
  10.        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd  
  11.        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">  
  12.   
  13.   <!-- this is the service object that we want to make transactional -->  
  14.   <bean id="fooService" class="x.y.service.DefaultFooService"/>  
  15.   
  16.   <!-- enable the configuration of transactional behavior based on annotations -->  
  17.   <tx:annotation-driven transaction-manager="txManager"/>  
  18.   
  19.   <!-- a PlatformTransactionManager is still required -->  
  20.   <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
  21.     <!-- (this dependency is defined somewhere else) -->  
  22.     <property name="dataSource" ref="dataSource"/>  
  23.   </bean>  
  24.   
  25.   <!-- other <bean/> definitions here -->  
  26.     
  27.   
  28. </beans>  

提示

实际上,如果你用 'transactionManager' 来定义 PlatformTransactionManager bean的名字的话,你就可以忽略 <tx:annotation-driven/> 标签里的 'transaction-manager' 属性。 如果 PlatformTransactionManager bean你要通过其它名称来注入的话,你必须用 'transaction-manager' 属性来指定它,如上所示。

@Transactional 注解可以被应用于接口定义和接口方法、类定义和类的 public 方法上。然而,请注意仅仅 @Transactional 注解的出现不足于开启事务行为,它仅仅 是一种元数据,能够被可以识别 @Transactional 注解和上述的配置适当的具有事务行为的beans所使用。上面的例子中,其实正是 <tx:annotation-driven/>元素的出现 开启 了事务行为。

Spring团队的建议是你在具体的类(或类的方法)上使用 @Transactional 注解,而不要使用在类所要实现的任何接口上。你当然可以在接口上使用 @Transactional 注解,但是这将只能当你设置了基于接口的代理时它才生效。因为注解是 不能继承 的,这就意味着如果你正在使用基于类的代理时,那么事务的设置将不能被基于类的代理所识别,而且对象也将不会被事务代理所包装(将被确认为严重的)。因此,请接受Spring团队的建议并且在具体的类上使用 @Transactional 注解。

我项目中就是使用了在service类上进行注解,类里面的方法也加上注解才使用成功了,单独方法上加注解回滚不成功,不知道为什么

注意

当使用 @Transactional 风格的进行声明式事务定义时,你可以通过 <tx:annotation-driven/> 元素的 "proxy-target-class" 属性值来控制是基于接口的还是基于类的代理被创建。如果 "proxy-target-class" 属值被设置为 "true",那么基于类的代理将起作用(这时需要CGLIB库cglib.jar在CLASSPATH中)。如果 "proxy-target-class" 属值被设置为 "false" 或者这个属性被省略,那么标准的JDK基于接口的代理将起作用。

在多数情形下,方法的事务设置将被优先执行。在下列情况下,例如: DefaultFooService 类被注解为只读事务,但是,这个类中的 updateFoo(Foo) 方法的 @Transactional 注解的事务设置将优先于类级别注解的事务设置。

[java] view plain copy
 print?
  1. @Transactional(readOnly = true)  
  2. public class DefaultFooService implements FooService {  
  3.   
  4.     public Foo getFoo(String fooName) {  
  5.         // do something  
  6.     }  
  7.   
  8.     // these settings have precedence for this method  
  9.     @Transactional(readOnly = false, propagation = Propagation.REQUIRES_NEW)  
  10.     public void updateFoo(Foo foo) {  
  11.         // do something  
  12.           
  13.     }  
  14. }  

9.5.6.1. @Transactional 有关的设置

@Transactional 注解是用来指定接口、类或方法必须拥有事务语义的元数据。 如:“当一个方法开始调用时就开启一个新的只读事务,并停止掉任何现存的事务”。 默认的 @Transactional 设置如下:

  • 事务传播设置是 PROPAGATION_REQUIRED

  • 事务隔离级别是 ISOLATION_DEFAULT

  • 事务是 读/写

  • 事务超时默认是依赖于事务系统的,或者事务超时没有被支持。

  • 任何 RuntimeException 将触发事务回滚,但是任何 checked Exception 将不触发事务回滚

这些默认的设置当然也是可以被改变的。 @Transactional 注解的各种属性设置总结如下:

 

表 9.2. @Transactional 注解的属性

属性类型描述传播性枚举型:Propagation可选的传播性设置隔离性枚举型:Isolation可选的隔离性级别(默认值:ISOLATION_DEFAULT只读性布尔型读写型事务 vs. 只读型事务超时int型(以秒为单位)事务超时回滚异常类(rollbackFor)一组 Class 类的实例,必须是Throwable 的子类一组异常类,遇到时 必须 进行回滚。默认情况下checked exceptions不进行回滚,仅unchecked exceptions(即RuntimeException的子类)才进行事务回滚。回滚异常类名(rollbackForClassname)一组 Class 类的名字,必须是Throwable的子类一组异常类名,遇到时 必须 进行回滚不回滚异常类(noRollbackFor)一组 Class 类的实例,必须是Throwable 的子类一组异常类,遇到时 必须不 回滚。不回滚异常类名(noRollbackForClassname)一组 Class 类的名字,必须是Throwable 的子类一组异常类,遇到时 必须不 回滚


9.5.7. 插入事务操作

考虑这样的情况,你有一个类的实例,而且希望 同时插入事务性通知(advice)和一些简单的剖析(profiling)通知。那么,在<tx:annotation-driven/>环境中该怎么做?

我们调用 updateFoo(Foo) 方法时希望这样:

  • 配置的剖析切面(profiling aspect)开始启动,

  • 然后进入事务通知(根据配置创建一个新事务或加入一个已经存在的事务),

  • 然后执行原始对象的方法,

  • 然后事务提交(我们假定这里一切正常),

  • 最后剖析切面报告整个事务方法执行过程花了多少时间。

注意

这章不是专门讲述AOP的任何细节(除了应用于事务方面的之外)。请参考 第 6 章 使用Spring进行面向切面编程(AOP) 章以获得对各种AOP配置及其一般概念的详细叙述。

这里有一份简单的剖析切面(profiling aspect)的代码。(注意,通知的顺序是由 Ordered 接口来控制的。要想了解更多细节,请参考 第 6.2.4.7 节 “通知(Advice)顺序” 节。)

[java] view plain copy
 print?
  1. package x.y;  
  2.   
  3. import org.aspectj.lang.ProceedingJoinPoint;  
  4. import org.springframework.util.StopWatch;  
  5. import org.springframework.core.Ordered;  
  6.   
  7. public class SimpleProfiler implements Ordered {  
  8.   
  9.     private int order;  
  10.   
  11.     // allows us to control the ordering of advice  
  12.     public int getOrder() {  
  13.         return this.order;  
  14.     }  
  15.   
  16.     public void setOrder(int order) {  
  17.         this.order = order;  
  18.     }  
  19.   
  20.     // this method is the around advice  
  21.     public Object profile(ProceedingJoinPoint call) throws Throwable {  
  22.         Object returnValue;  
  23.         StopWatch clock = new StopWatch(getClass().getName());  
  24.         try {  
  25.             clock.start(call.toShortString());  
  26.             returnValue = call.proceed();  
  27.         } finally {  
  28.             clock.stop();  
  29.             System.out.println(clock.prettyPrint());  
  30.         }  
  31.         return returnValue;  
  32.     }  
  33. }  

这里是帮助满足我们上述要求的配置数据。
[html] view plain copy
 print?
  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:aop="http://www.springframework.org/schema/aop"  
  5.         xmlns:tx="http://www.springframework.org/schema/tx"  
  6.         xsi:schemaLocation="  
  7.    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd  
  8.    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd  
  9.    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">  
  10.   
  11.     <bean id="fooService" class="x.y.service.DefaultFooService"/>  
  12.   
  13.     <!-- this is the aspect -->  
  14.     <bean id="profiler" class="x.y.SimpleProfiler">  
  15.         <!-- execute before the transactional advice (hence the lower order number) -->  
  16.           
  17.         <property name="order" value="1"/>  
  18.     </bean>  
  19.       
  20.     <tx:annotation-driven transaction-manager="txManager"/>  
  21.   
  22.     <aop:config>  
  23.         <!-- this advice will execute around the transactional advice -->  
  24.         <aop:aspect id="profilingAspect" ref="profiler">  
  25.             <aop:pointcut id="serviceMethodWithReturnValue" expression="execution(!void x.y..*Service.*(..))"/>  
  26.             <aop:around method="profile" pointcut-ref="serviceMethodWithReturnValue"/>  
  27.         </aop:aspect>  
  28.     </aop:config>  
  29.   
  30.     <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">  
  31.         <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>  
  32.         <property name="url" value="jdbc:oracle:thin:@rj-t42:1521:elvis"/>  
  33.         <property name="username" value="scott"/>  
  34.         <property name="password" value="tiger"/>  
  35.     </bean>  
  36.   
  37.     <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
  38.         <property name="dataSource" ref="dataSource"/>  
  39.     </bean>  
  40.   
  41. </beans>  

上面配置的结果将获得到一个拥有剖析和事务方面的 按那样的顺序 应用于它上面的 'fooService' bean。 许多附加的方面的配置将一起达到这样的效果。

最后,下面的一些示例演示了使用纯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:aop="http://www.springframework.org/schema/aop"       xmlns:tx="http://www.springframework.org/schema/tx"       xsi:schemaLocation="   http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd   http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd   http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">    <bean id="fooService" class="x.y.service.DefaultFooService"/>    <!-- the profiling advice -->    <bean id="profiler" class="x.y.SimpleProfiler">        <!-- execute before the transactional advice (hence the lower order number) -->        <property name="order" value="1"/>    </bean>    <aop:config>        <aop:pointcut id="entryPointMethod" expression="execution(* x.y..*Service.*(..))"/>        <!-- will execute after the profiling advice (c.f. the order attribute) -->               <aop:advisor advice-ref="txAdvice" pointcut-ref="entryPointMethod"order="2"/>                 <!-- order value is higher than the profiling aspect -->        <aop:aspect id="profilingAspect" ref="profiler">            <aop:pointcut id="serviceMethodWithReturnValue" expression="execution(!void x.y..*Service.*(..))"/>            <aop:around method="profile" pointcut-ref="serviceMethodWithReturnValue"/>        </aop:aspect>    </aop:config>    <tx:advice id="txAdvice" transaction-manager="txManager">        <tx:attributes>            <tx:method name="get*" read-only="true"/>            <tx:method name="*"/>        </tx:attributes>    </tx:advice>    <!-- other <bean/> definitions such as a DataSource and a PlatformTransactionManager here --></beans>

上面配置的结果是创建了一个 'fooService' bean,剖析方面和事务方面被 依照顺序 施加其上。如果我们希望剖析通知在目标方法执行之前 后于 事务通知执行,而且在目标方法执行之后 先于 事务通知,我们可以简单地交换两个通知bean的order值。

如果配置中包含更多的方面,它们将以同样的方式受到影响。

9.5.8. 结合AspectJ使用 @Transactional

通过AspectJ切面,你也可以在Spring容器之外使用Spring框架的 @Transactional 功能。要使用这项功能你必须先给相应的类和方法加上 @Transactional注解,然后把 spring-aspects.jar 文件中定义的org.springframework.transaction.aspectj.AnnotationTransactionAspect 切面连接进(织入)你的应用。同样,该切面必须配置一个事务管理器。你当然可以通过Spring框架容器来处理注入,但因为我们这里关注于在Spring容器之外运行应用,我们将向你展示如何通过手动书写代码来完成。


[java] view plain copy
 print?
  1. // construct an appropriate transaction manager   
  2. DataSourceTransactionManager txManager = new DataSourceTransactionManager(getDataSource());  
  3.   
  4. // configure the AnnotationTransactionAspect to use it; this must be done before executing any transactional methods  
  5. AnnotationTransactionAspect.aspectOf().setTransactionManager (txManager);   

注意

使用此切面(aspect),你必须在 实现 类(和/或类里的方法)、而 不是 类的任何所实现的接口上面进行注解。AspectJ遵循Java的接口上的注解 不被继承 的规则。

类上的 @Transactional 注解指定了类里的任何 public 方法执行的默认事务语义。

类里的方法的 @Transactional 将覆盖掉类注解的默认事务语义(如何存在的话)。 publicprotected和默认可见的方法可能都被注解。直接对 protected和默认可见的方法进行注解,让这些方法在执行时去获取所定义的事务划分是唯一的途径。

阅读全文
0 0
原创粉丝点击