美文网首页
Spring boot 全局捕获异常

Spring boot 全局捕获异常

作者: 不务正业的程序猿 | 来源:发表于2019-10-25 14:33 被阅读0次

@RestControllerAdvice(basePackages ="xx.xxx")

public class GlobalExceptionHandlerextends ResponseEntityExceptionHandler {

private static final Loglogger = LogFactory.getLog(GlobalExceptionHandler.class);

    @ExceptionHandler(value = Exception.class)

public ResulterrorHandler(Exception ex) {

String msg;

        msg = ex.getMessage();

        if (msg ==null || msg.length() ==0) {

msg ="xxxxxxx";

        }

ex.printStackTrace();

        return Result.error(msg);

    }

}

相关文章

网友评论

      本文标题:Spring boot 全局捕获异常

      本文链接:https://www.haomeiwen.com/subject/cpvsvctx.html