|
@@ -4,10 +4,12 @@ import java.sql.SQLException;
|
|
|
|
|
|
import javax.validation.ValidationException;
|
|
|
|
|
|
+import org.springframework.http.HttpStatus;
|
|
|
import org.springframework.http.converter.HttpMessageNotReadableException;
|
|
|
import org.springframework.validation.BindException;
|
|
|
import org.springframework.web.bind.MethodArgumentNotValidException;
|
|
|
import org.springframework.web.bind.annotation.ExceptionHandler;
|
|
|
+import org.springframework.web.bind.annotation.ResponseStatus;
|
|
|
import org.springframework.web.bind.annotation.RestControllerAdvice;
|
|
|
import org.springframework.web.servlet.NoHandlerFoundException;
|
|
|
|
|
@@ -30,7 +32,7 @@ public class GlobalExceptionHandler {
|
|
|
/**
|
|
|
* 空指针异常
|
|
|
*/
|
|
|
- //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
+ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
@ExceptionHandler(NullPointerException.class)
|
|
|
public ReturnT<String> handleNullPointerException(NullPointerException e) {
|
|
|
log.error(e.getMessage(), e);
|
|
@@ -40,7 +42,7 @@ public class GlobalExceptionHandler {
|
|
|
/**
|
|
|
* 自定义业务异常
|
|
|
*/
|
|
|
- //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
+ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
@ExceptionHandler(BusinessException.class)
|
|
|
public ReturnT<String> handleBusinessRuntimeException(BusinessException e) {
|
|
|
log.error(e.getMessage(), e);
|
|
@@ -50,7 +52,7 @@ public class GlobalExceptionHandler {
|
|
|
/**
|
|
|
* 入参校验异常
|
|
|
*/
|
|
|
- //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
+ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
@ExceptionHandler(MethodArgumentNotValidException.class)
|
|
|
public ReturnT<String> handleMethodArgumentNotValidException(MethodArgumentNotValidException e) {
|
|
|
log.error(e.getMessage(), e);
|
|
@@ -61,7 +63,7 @@ public class GlobalExceptionHandler {
|
|
|
* 入参校验异常
|
|
|
*/
|
|
|
@ExceptionHandler(BindException.class)
|
|
|
- //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
+ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
public ReturnT<String> handleBindException(BindException e) {
|
|
|
log.error(e.getMessage(), e);
|
|
|
return new ReturnT<String>(ReturnT.FAIL_CODE, e.getBindingResult().getFieldError().getDefaultMessage());
|
|
@@ -70,7 +72,7 @@ public class GlobalExceptionHandler {
|
|
|
/**
|
|
|
* 参数校验异常,message 为手动抛出时定义的具体异常信息
|
|
|
*/
|
|
|
- //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
+ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
@ExceptionHandler(ValidationException.class)
|
|
|
public ReturnT<String> handleValidationException(ValidationException e) {
|
|
|
log.error(e.getMessage(), e);
|
|
@@ -80,7 +82,7 @@ public class GlobalExceptionHandler {
|
|
|
/**
|
|
|
* 参数校验异常,message 为手动抛出时定义的具体异常信息
|
|
|
*/
|
|
|
- //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
+ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
@ExceptionHandler(IllegalArgumentException.class)
|
|
|
public ReturnT<String> handleIllegalArgumentException(IllegalArgumentException e) {
|
|
|
log.error(e.getMessage(), e);
|
|
@@ -90,7 +92,7 @@ public class GlobalExceptionHandler {
|
|
|
/**
|
|
|
* URI请求链接没有映射
|
|
|
*/
|
|
|
- //@ResponseStatus(HttpStatus.NOT_FOUND)
|
|
|
+ @ResponseStatus(HttpStatus.NOT_FOUND)
|
|
|
@ExceptionHandler(NoHandlerFoundException.class)
|
|
|
public ReturnT<String> handleNoHandlerFoundException(NoHandlerFoundException e) {
|
|
|
log.error(e.getMessage(), e);
|
|
@@ -98,19 +100,9 @@ public class GlobalExceptionHandler {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Feign 调用异常
|
|
|
- */
|
|
|
- //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
- /*@ExceptionHandler(FeignException.class)
|
|
|
- public ReturnT<String> handleFeignException(FeignException e) {
|
|
|
- log.error(e.getMessage(), e);
|
|
|
- return ResponseUtil.errorResult(ResponseCode.C0110.getCode(), e.getMessage());
|
|
|
- }*/
|
|
|
-
|
|
|
- /**
|
|
|
* body体未找到
|
|
|
*/
|
|
|
- //@ResponseStatus(HttpStatus.BAD_REQUEST)
|
|
|
+ @ResponseStatus(HttpStatus.BAD_REQUEST)
|
|
|
@ExceptionHandler(HttpMessageNotReadableException.class)
|
|
|
public ReturnT<String> handleHttpMessageNotReadableException(HttpMessageNotReadableException e) {
|
|
|
log.error(e.getMessage(), e);
|
|
@@ -118,7 +110,7 @@ public class GlobalExceptionHandler {
|
|
|
}
|
|
|
|
|
|
@ExceptionHandler(SQLException.class)
|
|
|
- //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
+ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
public ReturnT<String> SQLException(SQLException e) {
|
|
|
log.error("sql语句异常", e);
|
|
|
return new ReturnT<String>(ReturnT.FAIL_CODE, ResponseCode.C0341.getDesc());
|
|
@@ -128,7 +120,7 @@ public class GlobalExceptionHandler {
|
|
|
* 系统默认繁忙
|
|
|
*/
|
|
|
@ExceptionHandler(Exception.class)
|
|
|
- //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
+ @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
|
public ReturnT<String> handleException(Exception e) {
|
|
|
log.error(e.getMessage(), e);
|
|
|
return new ReturnT<String>(ReturnT.FAIL_CODE, ResponseCode.Z9999.getDesc());
|