springboot 全局异常-ExceptionHandler

来源:互联网 发布:乡镇网络舆情预警机制 编辑:程序博客网 时间:2024/04/30 02:04
@ControllerAdvicepublic class GlobalException {    @ResponseBody    @ExceptionHandler    public String processException(Exception e){        String msg = "all exception "+e.getMessage();        System.out.println(msg);        return msg;    }}
原创粉丝点击