SpringBoot整合事务回滚

SpringBoot整合事务回滚

  • 一、自动回滚
  • 二、手动回滚


一、自动回滚

自动回滚有个前提条件,它一定必须是public的,其次,在它的方法上必须要添加上@Transactional 注解。
在方法或者类上加上注解@Transactional
1.Error一定会回滚。
2.异常中:运行时异常(unchecked exceptions)一定会回滚。而非运行时异常(checked exceptions),如IOExceptions和SQLExceptions不会回滚。

checked例外也回滚:在整个方法前加上 @Transactional(rollbackFor=Exception.class)

unchecked例外不回滚: @Transactional(noRollbackFor=RunTimeException.class)

注意: 如果异常被try-catch了,事务就不回滚了,必须抛向被@Transactional注解的层。

@Transactional(rollbackFor = Exception.class)//事物回滚
public class InspectionController {
    @RequestMapping("admin/insert_equipment_inspection")
    public JsonData insertEquipmentInspection(@RequestBody Map<String, Object> parameter) {
        try {
            return inspectionService.insertInspectionEquipmentRecordAndMaintenanceRecord((Integer) parameter.get("inspectionId"), (Integer) parameter.get("equipmentId"), String.valueOf(parameter.get("checkStatus")));
        } catch (Exception e) {
            e.printStackTrace();
            throw e;
        }
    }
}

二、手动回滚

手动回滚的唯一条件就是一定要在方法上加入@Transactional注解,它与自动回滚的唯一区别可能就是要用到

public class InspectionController {
    @RequestMapping("admin/insert_equipment_inspection")
    public JsonData insertEquipmentInspection(@RequestBody Map<String, Object> parameter) {
        try {
            return inspectionService.insertInspectionEquipmentRecordAndMaintenanceRecord((Integer) parameter.get("inspectionId"), (Integer) parameter.get("equipmentId"), String.valueOf(parameter.get("checkStatus")));
        } catch (Exception e) {
            e.printStackTrace();
            //手动回滚
            TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();
            return JsonData.buildError("失败");
        }
    }
}

你可能感兴趣的:(项目中遇见的问题,spring,boot)