类 GybytControllerExceptionAdvice
- java.lang.Object
-
- cn.gybyt.web.advice.GybytControllerExceptionAdvice
-
@RestControllerAdvice public class GybytControllerExceptionAdvice extends Object
异常拦截
-
-
构造器概要
构造器 构造器 说明 GybytControllerExceptionAdvice()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 org.springframework.http.ResponseEntityapiExceptionHandler(BaseException e)处理自定义异常org.springframework.http.ResponseEntitymethodArgumentNotValidExceptionHandler(Exception e)处理web全局异常
-
-
-
方法详细资料
-
methodArgumentNotValidExceptionHandler
@ExceptionHandler(java.lang.Exception.class) public org.springframework.http.ResponseEntity methodArgumentNotValidExceptionHandler(Exception e)
处理web全局异常- 参数:
e-- 返回:
-
apiExceptionHandler
@ExceptionHandler(BaseException.class) public org.springframework.http.ResponseEntity apiExceptionHandler(BaseException e)
处理自定义异常- 参数:
e-- 返回:
-
-