在 Quarkus 中,有没有办法在 REST 客户端调用上应用响应拦截器?

In Quarkus, is there a way to apply a Response Interceptor on the REST client calls?

我有一个产品 REST API 我需要使用它 returns 像这样的东西:
HTTP 200 正常
{ "return_code": "failure_x" }

我无法更改它,但我需要保持我的项目正常运行。

有没有我可以使用的 Quarkus REST 客户端响应拦截器
在我看来,拦截器是为我的控制器而不是为我的客户准备的。

我想拦截响应并将其修改为正确的 HTTP 代码,然后进行处理。

正如 karelss 在评论中指出的那样,你可以创建一个 ClientResponseFilter 来做你想做的事。

这样的过滤器可以通过以下方式注册:

  • @RegisterProvider(MyFilter.class) 在您的 JAX-RS 界面上
  • application.properties 中:
com.example.MyInterface/mp-rest/providers=com.example.MyFilter

另一种选择是创建自定义 ResponseExceptionMapper。您以与过滤器相同的方式注册它。这是示例异常映射器的样子:

package io.quarkus.rest.client.reactive.runtime;

import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.Response;

import org.eclipse.microprofile.rest.client.ext.ResponseExceptionMapper;

public class DefaultMicroprofileRestClientExceptionMapper implements ResponseExceptionMapper {

    public Throwable toThrowable(Response response) {
        try {
            response.bufferEntity();
        } catch (Exception var3) {
        }

        return new WebApplicationException("Unknown error, status code " + response.getStatus(), response);
    }

    public boolean handles(int status, MultivaluedMap headers) {
        return status >= 400;
    }

    public int getPriority() {
        return 5000;
    }
}

有关异常映射器的更多信息,请查看 MicroProfile Rest Client 规范:https://download.eclipse.org/microprofile/microprofile-rest-client-2.0/microprofile-rest-client-spec-2.0.html#_responseexceptionmapper