当前位置:   article > 正文

Spring try catch 之后的事务回滚

java try catch之后如何事务回滚
@Transactional(rollbackFor = java.lang.Exception.class)
@Override
public Map<String, String> test()  {

    Map<String, String> map = new HashMap<>();
    int i = testDao.save("name5");
    try {
        String str = null ;
        if (i == 1) {
            str.equals(""); //保存成功,制造null异常
        }
        testDao.save("name6");
    } catch (Exception e) {
        e.printStackTrace();
        map.put("data","失败");
        //当异常被catch后,spring捕捉不到,因而不能回滚事务
        TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();  //手动回滚事务
        return map ;
        //throws new Exception("自定义异常");  //或者throws 异常
    }
    map.put("data","成功!");
    return map;
}

转载于:https://my.oschina.net/syhsmile/blog/1791875

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/630183
推荐阅读
相关标签
  

闽ICP备14008679号