jFinal事务实现的原理

本文内容

  1. jFinal怎样使用数据库事务
  2. jFinal的事务是怎么实现的
  1. 在需要事务的方法上添加注解@Before(Tx.class),代码如下
@Before(Tx.class)
public boolean updateOrder(Order order){
  .......
}

并且在实例化此类的时候实用动态代理来增强,代码如下

private OrderDao orderDao = Enhancer.enhance(OrderDao.class);
  1. 从Enhancer类的enhance方法开始,enhance方法的代码如下
public static <T> T enhance(Class<T> targetClass) {
    return (T)net.sf.cglib.proxy.Enhancer.create(targetClass, new Callback());
}

使用cglib的动态代理功能来增强目标类,通过回调Callback类中的intercept方法来调用被代理类的方法,intercept代码如下

public Object intercept(Object target, Method method, Object[] args, MethodProxy methodProxy) throws Throwable {
        if (excludedMethodName.contains(method.getName())) {
            if (method.getName().equals("finalize"))
                return methodProxy.invokeSuper(target, args);
            return this.injectTarget != null ? methodProxy.invoke(this.injectTarget, args) : methodProxy.invokeSuper(target, args);
        }
        
        if (this.injectTarget != null) {
            target = this.injectTarget;
            Interceptor[] finalInters = InterceptorBuilder.build(injectInters, target.getClass(), method);
            Invocation invocation = new Invocation(target, method, args, methodProxy, finalInters);
            invocation.useInjectTarget = true;
            invocation.invoke();
            return invocation.getReturnValue();
        }
        else {
            Interceptor[] finalInters = InterceptorBuilder.build(injectInters, target.getClass(), method);
            Invocation invocation = new Invocation(target, method, args, methodProxy, finalInters);
            invocation.useInjectTarget = false;
            invocation.invoke();
            return invocation.getReturnValue();
        }
    }

首先判断方法名为“finalize”的逻辑不看,跳过
看下面if中的代码

if (this.injectTarget != null) {
    target = this.injectTarget;
    // 获取到所有的拦截器集合
    Interceptor[] finalInters = InterceptorBuilder.build(injectInters, target.getClass(), method);
    // 将拦截器交给Invocation
    Invocation invocation = new Invocation(target, method, args, methodProxy, finalInters);
    invocation.useInjectTarget = true;
    // 然后调用
    invocation.invoke();
    return invocation.getReturnValue();
}

第一步获取到所有的拦截器集合,InterceptorBuilder.build的代码如下

public static Interceptor[] build(Interceptor[] injectInters, Class<?> targetClass, Method method) {
        Interceptor[] methodInters = createInterceptors(method.getAnnotation(Before.class));
        
        // no Clear annotation
        Clear clear = method.getAnnotation(Clear.class);
        if (clear == null) {
            Interceptor[] classInters = createInterceptors(targetClass.getAnnotation(Before.class));
            Interceptor[] result = new Interceptor[globalInters.length + injectInters.length + classInters.length + methodInters.length];
            int index = 0;
            for (Interceptor inter : globalInters)
                result[index++] = inter;
            for (Interceptor inter : injectInters)
                result[index++] = inter;
            for (Interceptor inter : classInters)
                result[index++] = inter;
            for (Interceptor inter : methodInters)
                result[index++] = inter;
            return result;
        }
        
        // Clear annotation without parameter
        Class<? extends Interceptor>[] clearInters = clear.value();
        if (clearInters.length == 0)
            return methodInters;
        
        // Clear annotation with parameter
        Interceptor[] classInters = createInterceptors(targetClass.getAnnotation(Before.class));
        Interceptor[] temp = new Interceptor[globalInters.length + injectInters.length + classInters.length];
        int index = 0;
        for (Interceptor inter : globalInters)
            temp[index++] = inter;
        for (Interceptor inter : injectInters)
            temp[index++] = inter;
        for (Interceptor inter : classInters)
            temp[index++] = inter;
        
        int removeCount = 0;
        for (int i=0; i<temp.length; i++) {
            for (Class<? extends Interceptor> ci : clearInters) {
                if (temp[i].getClass() == ci) {
                    temp[i] = null;
                    removeCount++;
                    break;
                }
            }
        }       
        
        Interceptor[] result = new Interceptor[temp.length + methodInters.length - removeCount];
        index = 0;
        for (Interceptor inter : temp)
            if (inter != null)
                result[index++] = inter;
        for (Interceptor inter : methodInters)
            result[index++] = inter;
        return result;
    }

第二步将拦截器交给Invocation
第三步调用invocation.invoke(),看invoke的代码

public void invoke() {
    // 递归调用拦截器
    if (index < inters.length) {
        // 将拦截器实例传入一下拦截器
        inters[index++].intercept(this);
    }
    else if (index++ == inters.length) {    // index++ ensure invoke action only one time
        try {
            // Invoke the action
            if (action != null) {
                // 调用到具体Controller子类的方法
                returnValue = action.getMethod().invoke(target, args);
            }
            // Invoke the method
            else {
                if (useInjectTarget){
                    returnValue = methodProxy.invoke(target, args);
                }
                else{
                    returnValue = methodProxy.invokeSuper(target, args);
                }
            }
        }
        catch (InvocationTargetException e) {
            Throwable t = e.getTargetException();
            throw t instanceof RuntimeException ? (RuntimeException)t : new RuntimeException(e);
        }
        catch (RuntimeException e) {
            throw e;
        }
        catch (Throwable t) {
            throw new RuntimeException(t);
        }
    }
}

递归调用拦截器,并把自己的实例传入进去。
最终会调用到Tx类中的intercept方法,因为Tx类就是一个拦截器,代码如下

public void intercept(Invocation inv) {
    Config config = getConfigWithTxConfig(inv);
    if (config == null)
        config = DbKit.getConfig();
    
    Connection conn = config.getThreadLocalConnection();
    if (conn != null) { // Nested transaction support
        try {
            if (conn.getTransactionIsolation() < getTransactionLevel(config))
                conn.setTransactionIsolation(getTransactionLevel(config));
            inv.invoke();
            return ;
        } catch (SQLException e) {
            throw new ActiveRecordException(e);
        }
    }
    
    Boolean autoCommit = null;
    try {
        conn = config.getConnection();
        autoCommit = conn.getAutoCommit();
        config.setThreadLocalConnection(conn);
        conn.setTransactionIsolation(getTransactionLevel(config));  // conn.setTransactionIsolation(transactionLevel);
        conn.setAutoCommit(false);
        inv.invoke();
        conn.commit();
    } catch (NestedTransactionHelpException e) {
        if (conn != null) try {conn.rollback();} catch (Exception e1) {e1.printStackTrace();}
    } catch (Throwable t) {
        if (conn != null) try {conn.rollback();} catch (Exception e1) {e1.printStackTrace();}
        throw t instanceof RuntimeException ? (RuntimeException)t : new ActiveRecordException(t);
    }
    finally {
        try {
            if (conn != null) {
                if (autoCommit != null)
                    conn.setAutoCommit(autoCommit);
                conn.close();
            }
        } catch (Throwable t) {
            t.printStackTrace();    // can not throw exception here, otherwise the more important exception in previous catch block can not be thrown
        }
        finally {
            config.removeThreadLocalConnection();   // prevent memory leak
        }
    }
}

1)从config中获取连接对象conn,保留连接事务的开关
2)把conn连接对象交给本地线程保管,确保下游数据库操作获取的conn对象是同一个 3)配置事务级别
4)设置手动提交事务
5)inv.invoke();这一行代码会调用下一个拦截器,最终调用到上面invoke() 方法内的这几行代码,因为useInjectTarget是false,所以看else中的代码

if (useInjectTarget){
    returnValue = methodProxy.invoke(target, args);
}
else{
    returnValue = methodProxy.invokeSuper(target, args);
}

这就执行了开头介绍的方法,

@Before(Tx.class)
public boolean updateOrder(Order order){
  .......
}

方法内的数据库操作完成后,继续执行conn.commit();提交事务
6)如果有事务异常就回滚
7)还原连接的事务开关
8)从本地线程中移除连接
这就完成了事务操作

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,376评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,126评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,966评论 0 347
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,432评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,519评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,792评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,933评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,701评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,143评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,488评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,626评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,292评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,896评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,742评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,977评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,324评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,494评论 2 348

推荐阅读更多精彩内容

  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,598评论 18 399
  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 12,738评论 0 33
  • MyBatis提供了一种插件(plugin)的功能,虽然叫做插件,但其实这是拦截器功能。那么拦截器拦截MyBati...
    七寸知架构阅读 3,253评论 3 54
  • 生活中 很多时候做选择时,我们都以为两 条路只能选其一,殊不知,还有另外一条也 许两全其美的路。 活了这么...
    是周七七呀阅读 169评论 0 0
  • 今天是大年初一,怀左在这里给大家拜年~希望新的一年,我们都越来越好~ 01 昨晚睡得比较晚,今早起床听歌时,转到了...
    怀左同学阅读 1,399评论 11 36