1.问题

项目中使用mybatis_plus框架对于单个新增更新失败没有自动抛出异常,导致事务无法回滚。
注:批量新增或更新会自动抛出异常

2.使用aop对返回fasle进行自定义异常

(1)异常实体

/**
 * @author wyb
 * @description 更新新增失败自定义异常类
 * @date 2023/4/25 16:46
 */
@EqualsAndHashCode(callSuper = true)
@Data
public class ResultException extends RuntimeException {
    private Integer code;
    private String message;

    public ResultException(Integer code, String message) {
        super(message);
        this.code = code;
        this.message = message;
    }
}

(2)切面类

/**
 * @author wyb
 * @description 更新新增失败自定义异常类
 * @date 2023/4/25 16:46
 */
@Aspect
@Component
public class ServiceAspect {

    @Pointcut("execution(public * -.-.-.-.service..*.saveOrUpdate(..))||execution(public * -.-.-.-.service..*.update(..))")
    public void pointcut() {
    }

    @Around("pointcut()")
    public Object process(ProceedingJoinPoint joinPoint) throws Throwable {
        try {
            Object result = joinPoint.proceed();
            // 如果新增数据失败,则抛出自定义异常
            if (result instanceof Boolean && !(Boolean) result) {
                throw new ResultException(500, "新增数据失败");
            }
            return result;
        } catch (Exception e) {
            throw new ResultException(500, e.getMessage());
        }
    }
}

注:1.execution(public * com.-.-.-.service….(…))表示该路径下所有的service方法都会被增强
       2.execution(public * -.-.-.-.service….saveOrUpdate(…))||execution(public * -.-.-.-.service….update(…))标识该路径下所有的service的新增和更新操作会被增强

3.使用全局异常处理自定义异常,返回错误信息到前端显示

 /**
 * @author wyb
 * @description 全局异常处理器类
 * @date 2023/4/25 16:46
 */
@Slf4j
@RestControllerAdvice
public class GlobalExceptionHandler {
    /**
     * 新增更新异常
     *
     * @param e
     * @return
     */
    @ExceptionHandler(ResultException.class)
    @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
    public Result<?> resultException(ResultException e) {
        log.error("订单异常:{}", e.getMessage(), e);
        return Result.error("订单异常:" + e.getMessage(), e.getCode() == null ? Result.error().getCode() : e.getCode());
    }
}
Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐