1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
| @ControllerAdvice public class ExceptionHandle {
public static final Logger logger = LoggerFactory.getLogger(ExceptionHandle.class); private static final Map<String, String> EMPTY_DATA = new HashMap<>();
@ResponseBody @ExceptionHandler(value = Exception.class) public JsonView exceptionGet(Exception e) { logger.error("Exception for handle ", e); JsonView jsonView; if (e instanceof ApplicationException) { jsonView = new JsonView(); jsonView.setData(EMPTY_DATA); ApplicationException applicationException = (ApplicationException) e; jsonView.setCode(applicationException.getRetStub().getCode()); jsonView.setMessage(applicationException.getRetStub().getMsg()); } else if (e instanceof ConstraintViolationException) { ConstraintViolationException applicationException = (ConstraintViolationException) e; Set<ConstraintViolation<?>> violations = applicationException.getConstraintViolations(); StringBuilder stringBuilder = new StringBuilder(); for (ConstraintViolation<?> item : violations) { stringBuilder.append("[" + item.getMessage() + "]"); } String msg = stringBuilder.toString(); logger.error("ConstraintViolation msg is : " + msg); jsonView = new JsonView(SysStubInfo.PARAMETER_TYPE_INVALID, msg, EMPTY_DATA); } else if (e instanceof MethodArgumentNotValidException) { MethodArgumentNotValidException applicationException = (MethodArgumentNotValidException) e; List<ObjectError> allErrors = applicationException.getBindingResult().getAllErrors(); StringBuilder stringBuilder = new StringBuilder(); for (ObjectError error : allErrors) { stringBuilder.append("[" + error.getDefaultMessage() + "]"); } String msg = stringBuilder.toString(); logger.error("ArgumentNotValid msg is : " + msg); jsonView = new JsonView(SysStubInfo.PARAMETER_TYPE_INVALID, msg, EMPTY_DATA); } else if (e instanceof MissingServletRequestParameterException) { MissingServletRequestParameterException applicationException = (MissingServletRequestParameterException) e; String parameterName = applicationException.getParameterName(); String parameterType = applicationException.getParameterType(); StringBuilder stringBuilder = new StringBuilder(); stringBuilder .append("parameter " + parameterName + " is null " + " , expect: " + parameterType); String msg = stringBuilder.toString(); jsonView = new JsonView(SysStubInfo.PARAMETER_IS_NULL, msg, EMPTY_DATA); } else if (e instanceof HttpMediaTypeNotSupportedException) { HttpMediaTypeNotSupportedException applicationException = (HttpMediaTypeNotSupportedException) e; StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append(applicationException.getContentType().getSubtype()); String msg = stringBuilder.toString(); jsonView = new JsonView(SysStubInfo.CONTENT_TYPE_INVALID, msg, EMPTY_DATA); } else if (e instanceof HttpRequestMethodNotSupportedException) { HttpRequestMethodNotSupportedException applicationException = (HttpRequestMethodNotSupportedException) e; StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append(applicationException.getMethod()); String msg = stringBuilder.toString(); jsonView = new JsonView(SysStubInfo.METHOD_INVALID, msg, EMPTY_DATA); } else if (e instanceof NoHandlerFoundException) { NoHandlerFoundException applicationException = (NoHandlerFoundException) e; StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append( applicationException.getHttpMethod() + " --> " + applicationException.getRequestURL()); String msg = stringBuilder.toString(); jsonView = new JsonView(SysStubInfo.RESOURCE_INVALID, msg, EMPTY_DATA); } else if (e instanceof MethodArgumentTypeMismatchException) { MethodArgumentTypeMismatchException applicationException = (MethodArgumentTypeMismatchException) e; StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append( "parameter " + applicationException.getName() + " is not type of " + applicationException .getRequiredType().getSimpleName()); String msg = stringBuilder.toString(); jsonView = new JsonView(SysStubInfo.PARAMETER_TYPE_INVALID, msg, EMPTY_DATA); } else if (e instanceof HttpMessageNotReadableException) { HttpMessageNotReadableException applicationException = (HttpMessageNotReadableException) e; StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append(applicationException.getMessage()); String msg = stringBuilder.toString(); jsonView = new JsonView(SysStubInfo.REQUEST_BODY_INVALID, msg, EMPTY_DATA); } else if (e instanceof BindException) { BindException applicationException = (BindException) e; BindingResult bindingResult = applicationException .getBindingResult(); FieldError fieldError = bindingResult.getFieldError(); String field = fieldError.getField(); StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append(field); String msg = stringBuilder.toString(); jsonView = new JsonView(SysStubInfo.PARAMETER_IS_NULL, msg, EMPTY_DATA); } else { jsonView = new JsonView(SysStubInfo.DEFAULT_FAIL, EMPTY_DATA); } return jsonView; } }
|