• Restful接口调用统一异常处理


    1.关键字解释

    //它是一个Controller增强器,可对controller中被 @RequestMapping注解的方法加一些逻辑处理
    @ControllerAdvice
    //异常定义
    @ExceptionHandler
    //返回格式为json,可以使用 @RestControllerAdvice 代替 @ControllerAdvice,这样在方法上就可以不需要添加 @ResponseBody
    @ResponseBody

    2.springmvc对于http请求的异常类型

    Exception Type

    HTTP Status Code 

    ConversionNotSupportedException

    500 (Internal Server Error) 

    HttpMediaTypeNotAcceptableException

     

    406 (Not Acceptable)  

    HttpMediaTypeNotSupportedException

     

    415 (Unsupported Media Type) 

    HttpMessageNotReadableException

     

    400 (Bad Request) 

    HttpMessageNotWritableException

     

     500 (Internal Server Error) 

    HttpRequestMethodNotSupportedException

     

    405 (Method Not Allowed) 

    MissingServletRequestParameterException

    400 (Bad Request)  

     

    NoSuchRequestHandlingMethodException

     

    404 (Not Found)  

     

    TypeMismatchException

     

    400 (Bad Request)



    3.代码

    @ControllerAdvice
    public class RestfulApiExceptionHandler {
        /**
         * 缺失参数
         * @param request
         * @param exception
         * @return
         */
        @ExceptionHandler(value = MissingServletRequestParameterException.class)
        @ResponseBody
        public Response missingParameterExceptionHandler(HttpServletRequest request, MissingServletRequestParameterException exception){
            return Response.failure("缺少必要参数,参数名称为" + exception.getParameterName());
        }
    
        /**
         * 参数类型不匹配
         * @param request
         * @param exception
         * @return
         */
        @ExceptionHandler({TypeMismatchException.class})
        @ResponseBody
        public Response typeMismatchExceptionHandler(HttpServletRequest request,TypeMismatchException exception){
            return Response.failure("参数类型不匹配,类型应该为" + exception.getRequiredType());
        }
    
        /**
         * 请求方法不支持
         * @param request
         * @param exception
         * @return
         */
        @ExceptionHandler(value = HttpRequestMethodNotSupportedException.class)
        @ResponseBody
        public Response methodNotSupportedExceptionHandler(HttpServletRequest request,HttpRequestMethodNotSupportedException exception){
            return Response.failure("不支持的请求方法");
        }
        /**
         * 其他异常
         * @param request
         * @param exception
         * @return
         */
        @ExceptionHandler(value = Exception.class)
        @ResponseBody
        public Response exceptionHandler(HttpServletRequest request, Exception exception){
            return Response.failure("系统异常");
        }
    }
  • 相关阅读:
    Hibernate 持久化对象的状态
    Hibernate 主键生成策略
    Hibernate 环境搭建
    Struts2 UI标签
    Struts2 处理表单重复提交
    Struts2 模型驱动及页面回显
    Struts2 之 ognl
    Struts2 框架验证
    Struts2 手动验证
    Struts2 自定义拦截器
  • 原文地址:https://www.cnblogs.com/i-tao/p/13846999.html
Copyright © 2020-2023  润新知