Springboot處理異常的常見方式
一、制造異常
報500錯誤。在大量的代碼中很難找到錯誤
二、統一異常處理
添加異常處理方法
GlobalExceptionHandler.java中添加
//指定出現什麼異常執行這個方法 @ExceptionHandler(Exception.class) @ResponseBody //為瞭返回數據 public R error(Exception e) { e.printStackTrace(); return R.error().message("執行瞭全局異常處理.."); }
報錯異常:在大型項目中,可對多種異常進行處理,便於找bug
三、特殊異常處理
定義異常,特別處理ArithmeticException異常
//特定異常處理 @ExceptionHandler(ArithmeticException.class) @ResponseBody//為瞭返回數據 public R error(ArithmeticException e){ e.printStackTrace(); return R.error().message("執行瞭ArithmeticException異常處理"); }
異常處理結果:
四、自定義異常處理
第一步:創建自定義處理類的實體類:
@Data @AllArgsConstructor//生成有參構造方法 @NoArgsConstructor//生成無參構造方法 public class MyException extends RuntimeException{ private Integer code; private String msg; }
第二步:在統一異常類中添加規則:
//自定義異常處理 @ExceptionHandler(MyException.class) @ResponseBody//返回數據 public R error(MyException e){ e.printStackTrace(); return R.error().code(e.getCode()).message(e.getMsg());//封裝自定義異常信息 }
第三步:執行自定義異常
try{ int i=10/0; }catch (Exception e){ throw new MyException(20001,"執行自定義異常處理"); }
以上使用的R類,用於封裝json數據的格式:
@Data public class R { @ApiModelProperty(value = "是否成功") private Boolean success; @ApiModelProperty(value = "返回碼") private Integer code; @ApiModelProperty(value = "返回消息") private String message; @ApiModelProperty(value = "返回數據") private Map<String, Object> data = new HashMap<String, Object>(); private R(){} public static R ok(){ R r = new R(); r.setSuccess(true); r.setCode(ResultCode.SUCCESS); r.setMessage("成功"); return r; } public static R error(){ R r = new R(); r.setSuccess(false); r.setCode(ResultCode.ERROR); r.setMessage("失敗"); return r; } public R success(Boolean success){ this.setSuccess(success); return this; } public R message(String message){ this.setMessage(message); return this; } public R code(Integer code){ this.setCode(code); return this; } public R data(String key, Object value){ this.data.put(key, value); return this; } public R data(Map<String, Object> map){ this.setData(map); return this; } }
public interface ResultCode { public static Integer SUCCESS = 20000; public static Integer ERROR = 20001; }
到此這篇關於Springboot處理異常的常見方式的文章就介紹到這瞭,更多相關springboot異常處理內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- SpringBoot 統一公共返回類的實現
- SpringBoot中如何統一接口返回與全局異常處理詳解
- Springboot異常日志輸出方式
- SpringBoot實現統一封裝返回前端結果集的示例代碼
- springboot 實戰:異常與重定向問題