springmvc_controller_全局事物接收处理入口

关键用法 @ControllerAdvice 
方法上标注 @ExceptionHandler({XxxxException.class})
@ControllerAdvice
public class GlobalExceptionHandler {

@ExceptionHandler({MissingServletRequestParameterException.class})
@ResponseBody
    public Map handleException(MissingServletRequestParameterException e, HttpServletResponse response) {
        Map resultMap = new HashMap();
        resultMap.put("code", "9999");
        resultMap.put("message", e.getMessage());
        return resultMap;
    }

抛出的异常显示的json串

一个例子类
 


import org.apache.commons.lang3.exception.ExceptionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpServletResponse;

@ControllerAdvice
public class GlobalExceptionHandler {
    private static final Logger LOGGER = LoggerFactory.getLogger(GlobalExceptionHandler.class);

    public GlobalExceptionHandler() {
    }

    @ExceptionHandler({FtmClientException.class})
    @ResponseBody
    public FtmApiExceptionResp handleException(FtmApiException e, HttpServletResponse response) {
        FtmApiExceptionResp exceptionResponse = new FtmApiExceptionResp();
        response.setStatus(e.getCode());
        exceptionResponse.addError(e.getErrorCodes());
        return exceptionResponse;
    }

    @ExceptionHandler({IllegalArgumentException.class})
    @ResponseBody
    public FtmApiExceptionResp handleException(IllegalArgumentException e, HttpServletResponse response) {
        FtmApiExceptionResp exceptionResponse = new FtmApiExceptionResp();
        response.setStatus(400);
        exceptionResponse.addError(400, e.getMessage());
        return exceptionResponse;
    }


    @ExceptionHandler({Throwable.class})
    @ResponseBody
    public FtmApiExceptionResp unknownException(Exception e, HttpServletResponse response) {
        LOGGER.error(ExceptionUtils.getStackTrace(e));
        return default500Exception(e, response);
    }

    private FtmApiExceptionResp default500Exception(Exception e, HttpServletResponse response) {
        FtmApiExceptionResp exceptionResponse = new FtmApiExceptionResp();
        response.setStatus(500);
        exceptionResponse.addError(500, "未知异常");
        return exceptionResponse;
    }


    private FtmApiExceptionResp default400Exception(Exception e, HttpServletResponse response, String msg) {
        FtmApiExceptionResp exceptionResponse = new FtmApiExceptionResp();
        response.setStatus(400);
        exceptionResponse.addError(400, msg);
        return exceptionResponse;
    }
}

猜你喜欢

转载自blog.csdn.net/maqingbin8888/article/details/81539985
今日推荐