Netflix Feign - 通过微服务传播状态和异常

时间:2016-08-05 09:46:14

标签: java spring spring-boot microservices netflix-feign

我正在使用Netflix Feign来调用微服务A的一个操作到微服务B的其他操作,该操作使用Spring Boot验证代码。

如果验证不好,微服务B的操作会抛出异常。然后我在微服务中处理并返回HttpStatus.UNPROCESSABLE_ENTITY(422),如下一个:

@ExceptionHandler({
       ValidateException.class
    })
    @ResponseStatus(HttpStatus.UNPROCESSABLE_ENTITY)
    @ResponseBody
    public Object validationException(final HttpServletRequest request, final validateException exception) {
        log.error(exception.getMessage(), exception);
        error.setErrorMessage(exception.getMessage());
        error.setErrorCode(exception.getCode().toString());
        return error;
    }

因此,当微服务A在接口中调用B作为下一个:

@Headers("Content-Type: " + MediaType.APPLICATION_JSON_UTF8_VALUE)
@RequestLine("GET /other")
void otherOperation(@Param("other")  String other );

@Headers("Content-Type: " + MediaType.APPLICATION_JSON_UTF8_VALUE)
@RequestLine("GET /code/validate")
Boolean validate(@Param("prefix") String prefix);

static PromotionClient connect() {

    return Feign.builder()
        .encoder(new GsonEncoder())
        .decoder(new GsonDecoder())
        .target(PromotionClient.class, Urls.SERVICE_URL.toString());
}

并且验证失败它返回内部错误500并显示下一条消息:

{
  "timestamp": "2016-08-05T09:17:49.939+0000",
  "status": 500,
  "error": "Internal Server Error",
  "exception": "feign.FeignException",
  "message": "status 422 reading Client#validate(String); content:\n{\r\n  \"errorCode\" : \"VALIDATION_EXISTS\",\r\n  \"errorMessage\" : \"Code already exists.\"\r\n}",
  "path": "/code/validate"
}

但我需要返回微服务操作B。

使用Netflix Feign通过微服务传播状态和例外的最佳方法或技术是什么?

6 个答案:

答案 0 :(得分:19)

你可以使用假装ErrorDecoder

https://github.com/OpenFeign/feign/wiki/Custom-error-handling

这是一个例子

public class MyErrorDecoder implements ErrorDecoder {

    private final ErrorDecoder defaultErrorDecoder = new Default();

    @Override
    public Exception decode(String methodKey, Response response) {
        if (response.status() >= 400 && response.status() <= 499) {
            return new MyBadRequestException();
        }
        return defaultErrorDecoder.decode(methodKey, response);
    }

}

对于spring来获取ErrorDecoder,你必须把它放在ApplicationContext上:

@Bean
public MyErrorDecoder myErrorDecoder() {
  return new MyErrorDecoder();
}

答案 1 :(得分:3)

我做的小库的无耻插件根据响应正文中返回的错误代码,使用反射动态地重新抛出已检查的异常(如果它们在Feign界面上,则取消选中)。

有关自述文件的更多信息: https://github.com/coveo/feign-error-decoder

答案 2 :(得分:1)

编写自定义异常映射器并进行注册。您可以自定义回复。

完整的示例是here

public class GenericExceptionMapper implements ExceptionMapper<Throwable> {

    @Override
    public Response toResponse(Throwable ex) {
        return Response.status(500).entity(YOUR_RETURN_OBJ_HERE).build();
    }

}

答案 3 :(得分:0)

我们的工作如下:

共享包含微服务异常的公共jar。

1。)在微服务中将异常转换为DTO类可以说是ErrorInfo。 其中包含自定义异常的所有属性,其中包含一个String exceptionType,它将包含异常类名称。

2。)当在微服务B接收到它时,它将由微服务B中的ErrorDecoder处理,它将尝试从exceptionType创建一个异常对象,如下所示:

@Override
public Exception decode(String methodKey, Response response) {       

ErrorInfo errorInfo = objectMapper.readValue(details, ErrorInfo.class);
Class exceptionClass;

Exception decodedException;

try {

    exceptionClass = Class.forName(errorInfo.getExceptionType());  

    decodedException = (Exception) exceptionClass.newInstance();

    return decodedException;

 }

 catch (ClassNotFoundException e) {

    return new PlatformExecutionException(details, errorInfo);

 }
  return defaultErrorDecoder.decode(methodKey, response);
 }

答案 4 :(得分:0)

自2017年以来,我们创建了一个通过注释执行此操作的库(这使得对注释/请求的编码非常容易,就像对request / etc一样)。

它基本上允许您编写如下的错误处理代码:

@ErrorHandling(codeSpecific =
    {
        @ErrorCodes( codes = {401}, generate = UnAuthorizedException.class),
        @ErrorCodes( codes = {403}, generate = ForbiddenException.class),
        @ErrorCodes( codes = {404}, generate = UnknownItemException.class),
    },
    defaultException = ClassLevelDefaultException.class
)
interface GitHub {

    @ErrorHandling(codeSpecific =
        {
            @ErrorCodes( codes = {404}, generate = NonExistentRepoException.class),
            @ErrorCodes( codes = {502, 503, 504}, generate = RetryAfterCertainTimeException.class),
        },
        defaultException = FailedToGetContributorsException.class
    )
    @RequestLine("GET /repos/{owner}/{repo}/contributors")
    List<Contributor> contributors(@Param("owner") String owner, @Param("repo") String repo);
}

您可以在OpenFeign组织中找到它: https://github.com/OpenFeign/feign-annotation-error-decoder

免责声明:我是feign的撰稿人,也是该错误解码器的主要开发人员。

答案 5 :(得分:0)

OpenFeign的FeignException不会绑定到特定的HTTP状态(即不使用Spring的@ResponseStatus注释),这使得Spring在遇到{{1 }}。没关系,因为500可能有许多与特定HTTP状态无关的原因。

但是,您可以更改Spring处理FeignException的方式。只需定义一个FeignException即可处理您所需的FeignExceptions(请参见here):

ExceptionHandler

此示例使Spring返回与从微服务B接收的HTTP状态相同的地址。您可以进一步操作,还返回原始响应正文:

FeignException