在Python中寻找数据异常值的三种方法(python处理异常值的代码)
545
2022-07-23
目录FeignClient服务器抛出异常客户端处理feigntMGRJm异常拦截器Fhttp://eignClient异常合集Mark问题1问题2
FeignClient服务器抛出异常客户端处理
在使用feign进行远程方法调用时,如果远程服务端方法出现异常,客户端有时需要捕获,并且把异常信息返回给前端,而如果在开启熔断之后,这个异常会被消化,所以说,如果希望拿到服务端异常,
feign.hystrix.enable需要设置为false,而当不开熔断时,我们也有几种方法把拿到服务端的异常信息,下面总结一下。
feign异常拦截器
注册一个Bean对象,当feign调用出现异常的时候,会触发这个方法:
import com.test.jsonUtils;
import feign.Response;
import feign.Util;
import feign.codec.ErrorDecoder;
import io.test.BadRequestException;
import io.test.InternalServerErrorException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Configuration;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import static feign.FeignException.errorStatus;
/**
* @author 飘逝才子http://
* @date 2020/11/05
* @description
*/
@Configuration
public class FeignClientErrorDecoder implements ErrorDecoder {
private Logger logger = LoggerFactory.getLogger(FeignClihttp://entErrorDecoder.class);
@Override
public Exception decode(String methodKey, Response response) {
Map
jsonBody.put("message", "Internal server error");
try {
String body = Util.toString(response.body().asReader());
jsonBody = JsonUtils.toMap(body);
} catch (IOException e) {
logger.error("feign.IOException", e);
}
assert jsonBody != null;
if (response.status() >= 400 && response.status() < 500) {
throw new BadRequestException(jsonBody.get("message").toString());
}
if (response.status() >= 500) {
throw new InternalServerErrorException(jsonBody.get("message").toString());
}
return errorStatus(methodKey, response);
}
}
注意,使用这个方式,需要在熔断器关闭时才起作用,因为它们的执行过程是,先走这个拦截器,再走熔断的fallback,所以这个异常会被熔断吞掉,返回状态为200,返回值为你的fallback的默认值。
FeignClient异常合集Mark
问题1
feignClient调用报异常cause:Content-Type cannot contain wildcard type ‘*’
是因为远程调用的时候入参识别不了application/json
解决办法:在方法上加上类型即可consumes = MediaType.APPLICATION_JSON_VALUE
@RequestMapping(value = "/xxx/xxx/xxx/xxx/xxx/xxx/result",method = RequestMethod.GET, consumes = MediaType.APPLICATION_JSON_VALUE) ResponseResult xxx(TaskParam taskParam);
问题2
fallback 与fallbackFactory的使用
fallbackFactory:抛出异常可查看,一般看里面抛出的异常日志即可判断远程调用的问题所在。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~