统一异常处理
@ControllerAdvice
@Slf4j
public class GlobalExceptionHandler {
private final static Logger LOGGER = LoggerFactory.getLogger(GlobalExceptionHandler.class);
@ExceptionHandler(value = Exception.class)
@ResponseBody
public RestResponse<Nullable> exceptionGet(HttpServletRequest req, HttpServletResponse response , Exception e) {
if (e instanceof BusinessException) {
BusinessException be = (BusinessException) e;
if(CommonErrorCode.CUSTOM.equals(be.getErrorCode())){
return new RestResponse<Nullable>(be.getErrorCode().getCode(), be.getMessage());
}else{
return new RestResponse<Nullable>(be.getErrorCode().getCode(), be.getErrorCode().getDesc());
}
}else if(e instanceof NoHandlerFoundException){//从这开始可以进行自定义
return new RestResponse<Nullable>(404, "找不到资源");
}else if(e instanceof HttpRequestMethodNotSupportedException){
return new RestResponse<Nullable>(405, "method 方法不支持");
}else if(e instanceof HttpMediaTypeNotSupportedException){
return new RestResponse<Nullable>(415, "不支持媒体类型");
}
log.error("【系统异常】" + e.getMessage());
return new RestResponse<Nullable>(CommonErrorCode.UNKOWN.getCode(), CommonErrorCode.UNKOWN.getDesc());//最后兜底的
}
}
异常错误码
public enum CommonErrorCode implements ErrorCode{
公用异常编码 //
SUCCESS(0, "成功"),
FUSE(-1, "网关调用熔断"),
/**
* 传入参数与接口不匹配
*/
E_100101(100101,"传入参数与接口不匹配"),
/**
* 验证码错误
*/
E_100102(100102,"验证码错误"),
/**
* 验证码为空
*/
E_100103(100103,"验证码为空"),
/**
* 查询结果为空
*/
E_100104(100104,"查询结果为空"),
/**
* ID格式不正确或超出Long存储范围
*/
E_100105(100105,"ID格式不正确或超出Long存储范围"),
E_100106(100106,"请求失败"),
E_999990(999990,"调用微服务-交易中心 被熔断"),
E_999991(999991,"调用微服务-授权服务 被熔断"),
E_999992(999992,"调用微服务-用户服务 被熔断"),
E_999993(999993,"调用微服务-资源服务 被熔断"),
E_999994(999994,"调用微服务-同步服务 被熔断"),
E_999995(999995,"调用微服务-统一账户服务 被熔断"),
E_999996(999996,"调用微服务-存管代理服务 被熔断"),
/**
* 调用微服务-还款服务 被熔断
*/
E_999997(999997,"调用微服务-还款服务 被熔断"),
CUSTOM(999998,"自定义异常"),
/**
* 未知错误
*/
UNKOWN(999999,"系统异常,请重试");
private int code;
private String desc;
public int getCode() {
return code;
}
public String getDesc() {
return desc;
}
private CommonErrorCode(int code, String desc) {
this.code = code;
this.desc = desc;
}
public static CommonErrorCode setErrorCode(int code) {
for (CommonErrorCode errorCode : CommonErrorCode.values()) {
if (errorCode.getCode()==code) {
return errorCode;
}
}
return null;
}
}
异常类型处理
public class BusinessException extends RuntimeException {
private static final long serialVersionUID = 5565760508056698922L;
private ErrorCode errorCode;
public BusinessException(ErrorCode errorCode) {
super();
this.errorCode = errorCode;
}
public BusinessException() {
super();
}
public BusinessException(String arg0, Throwable arg1, boolean arg2, boolean arg3) {
super(arg0, arg1, arg2, arg3);
}
public BusinessException(ErrorCode errorCode, String arg0, Throwable arg1, boolean arg2, boolean arg3) {
super(arg0, arg1, arg2, arg3);
this.errorCode = errorCode;
}
public BusinessException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
public BusinessException(ErrorCode errorCode, String arg0, Throwable arg1) {
super(arg0, arg1);
this.errorCode = errorCode;
}
public BusinessException(String arg0) {
super(arg0);
}
public BusinessException(ErrorCode errorCode, String arg0) {
super(arg0);
this.errorCode = errorCode;
}
public BusinessException(Throwable arg0) {
super(arg0);
}
public BusinessException(ErrorCode errorCode, Throwable arg0) {
super(arg0);
this.errorCode = errorCode;
}
public ErrorCode getErrorCode() {
return errorCode;
}
public void setErrorCode(ErrorCode errorCode) {
this.errorCode = errorCode;
}
}
返回类
public class RestResponse<T> {
private int code;//响应错误编码,0为正常 具体可以自定义
private String msg;//响应错误信息
private T result;//响应内容
public static <T> RestResponse<T> success() {
return new RestResponse<T>();
}
public static <T> RestResponse<T> success(T result) {
RestResponse<T> response = new RestResponse<T>();
response.setResult(result);
return response;
}
public static <T> RestResponse<T> validfail(String msg) {
RestResponse<T> response = new RestResponse<T>();
response.setCode(500);
response.setMsg(msg);
return response;
}
public RestResponse() {
this(200, "");
}
public RestResponse(int code, String msg) {
this.code = code;
this.msg = msg;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public T getResult() {
return result;
}
public void setResult(T result) {
this.result = result;
}
@JsonIgnore
public Boolean isSuccessful() {
return this.code == 0;
}
@Override
public String toString() {
return "RestResponse [code=" + code + ", msg=" + msg + ", result="
+ result + "]";
}
接口 ErrorCode
public interface ErrorCode {
int getCode();
String getDesc();
}