/** * Springboot捕獲異常類 */ @RestControllerAdvice(basePackages = "com.example.demo.controller")//切面 public class GlobalExceptionHandler { @ExceptionHandler(RuntimeException.class)//攔截的錯誤 @ResponseBody public Map<String,String> error(){ HashMap<String, String> map = new HashMap<>(); map.put("errorCode","500"); map.put("errorMsg","運行錯誤"); return map; } }