例外springBoot2.xグローバルキャッチ

/ * * 
 *全局捕获异常
 * / 
@ControllerAdvice(basePackages = " com.liangjian.controller "// 扫包范围
パブリック クラスGlobalExceptionHandler { 

    @ExceptionHandler(のRuntimeException。クラス
    @ResponseBody 
    公衆地図<文字列、オブジェクト> exceptionHandlerの() { 
        マップの<string、オブジェクト>マップ= 新しいハッシュマップの<string、オブジェクト> (); 
        map.put(" のerrorCode "" 500 " )。
        map.put("errorMsg内容" " システムエラー!" );
         を返す地図; 
    } 

}

 

おすすめ

転載: www.cnblogs.com/castlechen/p/11145074.html