美文网首页
java - spring boot 统一异常处理

java - spring boot 统一异常处理

作者: 小菜_charry | 来源:发表于2017-11-27 20:20 被阅读45次

    title: spring boot 统一异常处理
    categories: java #文章文类
    tags: [java] #文章标签,多于一项时用这种格式


    1. 自定义 Exception

    public class MyException extends Exception {
    
        public MyException(String message) {
            super(message);
        }
    }
    

    2. 定义异常处理类

    @ControllerAdvice
    public class GlobalExceptionHandler {
    
        @ExceptionHandler(value = MyException.class) // 指定异常类
        @ResponseBody // 返回 json 格式
        public String jsonErrorHandler( MyException e){
            return JsonHelper.error(e.getMessage());
        }
    }
    

    3. 使用

    @RequestMapping("/testError")
     public String error(@RequestParam(value = "type",required = false) int type) throws MyException {
         if (type == 1) {
             throw new MyException("自主抛出异常"); // 抛异常 throw
         }
         return JsonHelper.success("ok");
     }
    

    4. 测试

    就是这么简单 (●'◡'●)

    相关文章

      网友评论

          本文标题:java - spring boot 统一异常处理

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