@ControllerAdvice //定义为切面拦截所有 public class GlobalExceptionHandler { @ExceptionHandler(RuntimeException.class) @ResponseBody // 拦截返回是 json返回结果 public Map<String, Object> exceptionHandler() { Map<String, Object> result=new HashMap<String, Object>(); result.put("code","500"); result.put("msg","系统错误"); //这里可以处理 return result; } }
原文地址:https://www.cnblogs.com/shanheyongmu/p/12180259.html
时间: 2024-10-10 09:01:09