`
woshixushigang
  • 浏览: 576035 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类

spring事务

阅读更多

spring的事务分析

关键字: spring的事务分析

先主要介绍几个核心类

PlatformTransactionManager(平台事务管理)

 

TransactionStatus(事务状态)

 

TransactionDefinition(事务的级别和传播方式)

 

整个PlatformTransactionManager接口提供了一下3个方法

 

 

public interface TransactionStatus extends SavepointManager {

 

    boolean isNewTransaction();

 

     boolean hasSavepoint();

 

     void setRollbackOnly();

 

    boolean isRollbackOnly();

 

    boolean isCompleted();

 

}

public interface TransactionDefinition {

 

    int PROPAGATION_REQUIRED = 0;//支持现有事务。如果没有则创建一个事务

 

    int PROPAGATION_SUPPORTS = 1;//支持现有事务。如果没有则以非事务状态运行。

 

    int PROPAGATION_MANDATORY = 2;//支持现有事务。如果没有则抛出异常。

 

    int PROPAGATION_REQUIRES_NEW = 3;//总是发起一个新事务。如果当前已存在一个事务,则将其挂起。

 

    int PROPAGATION_NOT_SUPPORTED = 4;//不支持事务,总是以非事务状态运行,如果当前存在一个事务,则将其挂起。

 

    int PROPAGATION_NEVER = 5;//不支持事务,总是以非事务状态运行,如果当前存在一个事务,则抛出异常。

 

    int PROPAGATION_NESTED = 6;//如果当前已经存在一个事务,则以嵌套事务的方式运行,如果当前没有事务,则以默认方式(第一个)执行

 

    int ISOLATION_DEFAULT = -1;//默认隔离等级

 

    int ISOLATION_READ_UNCOMMITTED = Connection.TRANSACTION_READ_UNCOMMITTED;//最低隔离等级,仅仅保证了读取过程中不会读取到非法数据

 

    int ISOLATION_READ_COMMITTED = Connection.TRANSACTION_READ_COMMITTED;//某些数据库的默认隔离等级;保证了一个事务不会读到另外一个并行事务已修改但未提交的数据

 

    int ISOLATION_REPEATABLE_READ = Connection.TRANSACTION_REPEATABLE_READ;//比上一个更加严格的隔离等级。保证了一个事务不会修改已经由另一个事务读取但未提交(回滚)的数据

 

    int ISOLATION_SERIALIZABLE = Connection.TRANSACTION_SERIALIZABLE;//性能代价最为昂贵,最可靠的隔离等级。所有事务都严格隔离,可视为各事务顺序执

 

   int TIMEOUT_DEFAULT = -1;

 

    int getPropagationBehavior();

 

    int getIsolationLevel();

 

    int getTimeout();

 

    boolean isReadOnly(); 

 

    String getName();

 

 

}

 

 

 

HibernateTransactionObject 

此类具有以下3个常用参数

 

private SessionHolder sessionHolder;

 

private boolean newSessionHolder;

 

private boolean newSession;

 

SessionHolder

是spring定义的一个类,将事务和session包装在一起

    private static final Object DEFAULT_KEY = new Object();

 

    private final Map sessionMap = Collections.synchronizedMap(new HashMap(1));

 

    private Transaction transaction;

 

    private FlushMode previousFlushMode;

 

 

 下面将大致讲讲以拦击器管理事务的方式

<bean id="proxyFactory"    class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">

       <property name="beanNames">

           <list>

              <value>businessOrderDao</value>

           </list>

       </property>

       <property name="interceptorNames">

           <list>

              <value>transactionInterceptor</value>

           </list>

       </property>

    </bean>

 

Spring的事务配置方式之一 :使用拦截器

 

List<GpBusiOrderInfo> all = businessOrderDao.queryAndUpdateGpBusiOrderInfo());

当程序进入这个方法的时候,其实是进入的spring的一个代理中

JdkDynamicAopProxy

 

public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {

 

       MethodInvocation invocation = null;

 

       Object oldProxy = null;

 

       boolean setProxyContext = false;

 

       TargetSource targetSource = this.advised.targetSource;

 

//此处targetSource 的值 =SingletonTargetSource for target object[com.wasu.hestia.orm.dao.hibernate.BusinessOrderInfoDaoImpl@1f0d7f5]

 

//     Class targetClass = null;

 

//     Object target = null;

 

       try {

 

           if (!this.equalsDefined && AopUtils.isEqualsMethod(method)) {

 

              // The target does not implement the equals(Object) method itself.

 

              return (equals(args[0]) ? Boolean.TRUE : Boolean.FALSE);

 

           }

 

           if (!this.hashCodeDefined && AopUtils.isHashCodeMethod(method)) {

 

              // The target does not implement the hashCode() method itself.

 

              return new Integer(hashCode());

 

           }

 

           if (!this.advised.opaque && method.getDeclaringClass().isInterface() &&

 

                  method.getDeclaringClass().isAssignableFrom(Advised.class)) {

 

              // Service invocations on ProxyConfig with the proxy config...

 

              return AopUtils.invokeJoinpointUsingReflection(this.advised, method, args);

 

           }

 

           Object retVal = null;

 

           if (this.advised.exposeProxy) {

 

              // Make invocation available if necessary.

 

              oldProxy = AopContext.setCurrentProxy(proxy);

 

              setProxyContext = true;

 

           }

 

           // May be <code>null</code>. Get as late as possible to minimize the time we "own" the target,

 

           // in case it comes from a pool.

 

           target = targetSource.getTarget();

 

           if (target != null) {

 

              targetClass = target.getClass();

 

           }

 

           // Get the interception chain for this method.

 

           List chain = this.advised.getInterceptorsAndDynamicInterceptionAdvice(method, targetClass);

 

// getInterceptorsAndDynamicInterceptionAdvice 是根据方法和被代理的目标类来获取配置文件中对其进行拦截的操作,在这里只有org.springframework.transaction.interceptor.TransactionInterceptor//@1b1deea]

 

           // Check whether we have any advice. If we don't, we can fallback on direct

 

           // reflective invocation of the target, and avoid creating a MethodInvocation.

 

           if (chain.isEmpty()) {

 

              // We can skip creating a MethodInvocation: just invoke the target directly

 

              // Note that the final invoker must be an InvokerInterceptor so we know it does

 

              // nothing but a reflective operation on the target, and no hot swapping or fancy proxying.

 

              retVal = AopUtils.invokeJoinpointUsingReflection(target, method, args);

 

           }

 

           else {

 

              // We need to create a method invocation...

 

              invocation = new ReflectiveMethodInvocation(proxy, target, method, args, targetClass, chain);

 

这个new了一个ReflectiveMethodInvocation对象,他的基类就是MethodInvocation

 

              // Proceed to the joinpoint through the interceptor chain.

 

              retVal = invocation.proceed();

 

//此方法参见下面 1

 

           }

 

           // Massage return value if necessary.

 

           if (retVal != null && retVal == target && method.getReturnType().isInstance(proxy) &&

 

                  !RawTargetAccess.class.isAssignableFrom(method.getDeclaringClass())) {

 

              // Special case: it returned "this" and the return type of the method

 

              // is type-compatible. Note that we can't help if the target sets

 

              // a reference to itself in another returned object.

 

              retVal = proxy;

 

           }

 

           return retVal;

 

       }

 

       finally {

 

           if (target != null && !targetSource.isStatic()) {

 

              // Must have come from TargetSource.

 

              targetSource.releaseTarget(target);

 

           }

 

           if (setProxyContext) {

 

              // Restore old proxy.

 

              AopContext.setCurrentProxy(oldProxy);

 

           }

 

       }

 

    }

 

 

 

1.

public Object proceed() throws Throwable {

 

       //  We start with an index of -1 and increment early.

 

// currentInterceptorIndex的初始化值为-1,在这里也就是判断是否还有拦截器需要执行

 

       if (this.currentInterceptorIndex == this.interceptorsAndDynamicMethodMatchers.size() - 1) {

 

           return invokeJoinpoint();

 

       }

 

//此出当前currentInterceptorIndex+1的下标的拦截器取出,当前程序是0,对应的拦截器是org.springframework.transaction.interceptor.TransactionInterceptor@1b1deea

 

       Object interceptorOrInterceptionAdvice =      this.interceptorsAndDynamicMethodMatchers.get(++this.currentInterceptorIndex);

 

 

//这里返回false

 

       if (interceptorOrInterceptionAdvice instanceof InterceptorAndDynamicMethodMatcher) {

 

           // Evaluate dynamic method matcher here: static part will already have

 

           // been evaluated and found to match.

 

           InterceptorAndDynamicMethodMatcher dm =

 

               (InterceptorAndDynamicMethodMatcher) interceptorOrInterceptionAdvice;

 

           if (dm.methodMatcher.matches(this.method, this.targetClass, this.arguments)) {

 

              return dm.interceptor.invoke(this);

 

           }

 

           else {

 

              // Dynamic matching failed.

 

              // Skip this interceptor and invoke the next in the chain.

 

              return proceed();

 

           }

 

       }

 

       else {

 

           // It's an interceptor, so we just invoke it: The pointcut will have

 

           // been evaluated statically before this object was constructed.

 

//由于interceptorOrInterceptionAdvice现在是Object类型,所以需要将当前的interceptorOrInterceptionAdvice转换成MethodInterceptor也就是TransactionInterceptor的基类

 

请参看2

           return ((MethodInterceptor) interceptorOrInterceptionAdvice).invoke(this);

 

       }

 

    }

 

  

 

 

 

2.

程序进入了TransactionInterceptor,调用它的invoke方法

public Object invoke(final MethodInvocation invocation) throws Throwable {

 

       // Work out the target class: may be <code>null</code>.

 

       // The TransactionAttributeSource should be passed the target class

 

       // as well as the method, which may be from an interface.

 

//当前的targetClass 就是com.wasu.hestia.orm.dao.hibernate.BusinessOrderInfoDaoImpl

 

       Class targetClass = (invocation.getThis() != null ? invocation.getThis().getClass() : null);

 

 

 

       // If the transaction attribute is null, the method is non-transactional.

 

//根据方法名和目标对象获取TransactionAttribute的属性,此处值为PROPAGATION_REQUIRED,ISOLATION_DEFAULT,其中ISOLATION_DEFAULT是默认的数据库隔离级别

 

       final TransactionAttribute txAttr =               getTransactionAttributeSource().getTransactionAttribute(invocation.getMethod(), targetClass);

 

// joinpointIdentification 的值为com.wasu.hestia.orm.dao.BusinessOrderInfoDao.queryAndUpdateGpBusiOrderInfo

 

       final String joinpointIdentification = methodIdentification(invoc

 

 

 

 

分享到:
评论

相关推荐

    Spring事务管理Demo

    Spring事务管理的目的是确保数据的一致性和完整性,尤其是在多操作、多资源的环境中。本Demo将深入探讨Spring如何实现事务的管理。 首先,Spring提供了两种主要的事务管理方式:编程式事务管理和声明式事务管理。 ...

    spring事务与数据库操作

    ### Spring事务与数据库操作 #### 一、Spring的声明式事务管理 在现代软件开发中,事务处理是非常关键的一部分,特别是在涉及多个数据操作时。Spring框架提供了强大的事务管理能力,可以方便地集成到应用程序中。...

    Spring事务流程图

    Spring事务管理是Spring框架的核心特性之一,主要用于处理应用程序中的数据一致性问题。在Spring中,事务管理分为编程式和声明式两种方式。本篇文章将详细解释Spring事务管理的流程,以及如何通过时序图来理解这一...

    Spring事务管理开发必备jar包

    本资源包提供了进行Spring事务管理开发所需的所有关键库,包括框架基础、核心组件、AOP(面向切面编程)支持、日志处理、编译工具以及与数据库交互的相关jar包。下面将对这些知识点进行详细解释: 1. **Spring框架*...

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

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

    spring事务案例分析.zip

    本主题将深入探讨“Spring事务案例分析.zip”中的关键知识点,包括Spring事务管理及其在实际项目中的应用。 首先,我们来了解什么是Spring事务管理。在分布式系统或数据库操作中,事务管理是确保数据一致性和完整性...

    Spring事务管理失效原因汇总

    标题“Spring事务管理失效原因汇总”指出了本文的核心内容是分析在使用Spring框架进行事务管理时可能遇到的问题及其原因。描述部分进一步说明了事务失效的后果往往不明显,容易在测试环节被忽略,但在生产环境中出现...

    spring 事务传播 demo

    在Spring框架中,事务管理是核心特性之一,它允许开发者以声明式或编程式的方式处理事务。本示例“spring 事务传播 demo”将聚焦于Spring的事务传播行为,这是在多个方法调用中控制事务边界的关键概念。下面我们将...

    Spring事务小demo

    这个名为"Spring事务小demo"的项目提供了一个实践示例,帮助开发者了解Spring事务处理的基本概念和用法。 首先,Spring事务管理是Spring框架的核心特性之一,它允许我们以声明式或编程式的方式管理事务。声明式事务...

    Spring事务管理的jar包

    本篇将深入探讨Spring事务管理的核心概念、工作原理以及如何使用`spring-tx-3.2.0.RELEASE.jar`这个jar包。 首先,我们需要理解什么是事务。在数据库系统中,事务是一组操作,这些操作被视为一个整体,要么全部完成...

    Spring 事务简单完整例子

    本文将深入探讨在Spring框架中如何管理事务,以“Spring 事务简单完整例子”为出发点,结合标签“spring,事务,jdbc事务”,我们将详细解释Spring事务管理的原理和实践。 首先,Spring提供了两种事务管理方式:编程...

    Spring事务详细讲解

    Spring事务详细讲解 在 Spring 框架中,事务管理扮演着非常重要的角色。Spring 声明式事务让我们从复杂的事务处理中得到解脱,使得我们再也无需要去处理获得连接、关闭连接、事务提交和回滚等这些操作。再也无需要...

    SPRING事务机制DEMO

    Spring事务机制是Java开发中非常重要的一个概念,它在企业级应用中扮演着核心角色,确保数据的一致性和完整性。Spring提供了多种事务管理方式,包括编程式事务管理和声明式事务管理。在这篇DEMO中,我们将重点探讨...

    spring 事务传播与隔离级别DEMO

    本DEMO主要探讨的是Spring事务的传播行为和隔离级别,这些概念对于理解和优化数据库操作至关重要。让我们深入理解这些概念及其实际应用。 首先,我们来谈谈事务的传播行为。在Spring中,当一个方法被另一个具有事务...

    Spring事务传播机制.docx

    当我们在使用 Spring 所提供的事务功能时,如果是仅仅处理单个的事务,是比较容易把握事务的提交与回滚,不过一旦引入嵌套事务后,多个事务的回滚和提交就会变得复杂起来,各个事务之间是如何相互影响的,是一个值得...

    Spring事务操作示例(四种方式)

    Spring事务操作示例(四种方式),包含完整代码和数据库文件(基于MySQL,在项目sql文件夹中),可运行,学习Spring事务详见博客:http://blog.csdn.net/daijin888888/article/details/51822257

    Spring事务传播Demo.zip

    本篇将基于"Spring事务传播Demo"来深入探讨Spring事务管理和传播行为。 首先,我们需要理解什么是事务。在数据库操作中,事务是一组操作,这些操作要么全部执行,要么全部不执行,以确保数据的一致性和完整性。在...

    spring事务,xml方式和注解方式

    Spring事务管理是Spring框架的核心特性之一,主要用于处理应用程序中的数据一致性问题。在多线程、分布式系统中,事务管理显得尤为重要。本节将详细介绍Spring如何通过XML配置和注解方式来实现事务管理。 首先,...

Global site tag (gtag.js) - Google Analytics