• jfinal的回滚


    有两种方法

    1.

        @Before(Tx.class)    
        public void test() throws Exception {    
            
        } 

    优点:简单,不需要去处理每个异常,直接抛出异常;

    缺点:不能详细的区分返回数据、视图,只能笼统的报出异常

    2.

        public void pay() {    
            boolean bool = Db.tx(new IAtom() {    
                @Override    
                public boolean run() throws SQLException {    
                    if (...) {    
                        //全部回滚
                        return false;    
                    } else {    
                        //全部成功
                        return true;    
                    }      
                    //return true;    
                }    
            });    
                
            render...;
        }

    推选这个

  • 相关阅读:
    数组的基本操作
    面向对象
    继承
    JavaBean规范
    JVM内存模型
    数组的排序
    this
    访问控制权限
    数组
    方法的重载
  • 原文地址:https://www.cnblogs.com/yzssoft/p/7435063.html
Copyright © 2020-2023  润新知