1

我正在使用 quarkus 中的框架为 mandrill API 构建一个休息客户端

@RegisterRestClient
@Path("1.0")
@Produces("application/json")
@Consumes("application/json")
public interface MailService {
    @POST
    @Path("/messages/send-template.json")
    JsonObject ping(JsonObject mandrillInput);
}  

这是我的 application.properties 的相关部分

com.example.service.MailService/mp-rest/url=https:/mandrillapp.com/api

还有我的示例资源

@Path("/hello")
public class ExampleResource {

    @Inject
    @RestClient
    MailService mailService;

    @Produces(MediaType.TEXT_PLAIN)
    @GET
    public String hello() {
        System.out.print("In the API");
        JsonObject key = Json.createObjectBuilder().add("key", "ABCD").build();
        System.out.println("The json built is "+key);
        JsonObject response = mailService.ping(key);
        System.out.println("The response is " + response);
        return "hello";
    }
}  

我看到的是,如果我正在调用的 API(在这种情况下为 Mandrill)返回错误响应(例如,如果我的密钥错误),那么我用来存储响应的变量不会得到响应。相反,我向围绕它的应用程序公开的 REST API 填充了来自 Mandrill 的响应。
这是预期的行为吗?如何在 Quarkus 中调试 REST 客户端实现的输出?

被调用的 REST API 是 https://mandrillapp.com/api/docs/users.JSON.html#method=ping2

4

1 回答 1

3

如果您希望在发生错误时能够获取响应的正文,我建议您使用javax.ws.rs.core.Response作为响应类型。

您还可以使用ExceptionMapper走另一条路线并处理异常

于 2020-05-06T06:07:10.430 回答