0

我一直在使用 Quarkus 并尝试使用 Mutiny Vertx WebClient。我的代码有效,但我不想依赖不安全/未经检查的分配,这就是我目前在 HttpResponse 上使用 bodyAsJson 方法编写代码的方式。是否有更好的方法或更标准的方法从 Mutiny Vertx 客户端解码 JSON?我意识到我可以调用 bodyAsJsonObject 并返回它,但我需要对从 API 调用返回的数据进行处理,因此我需要将其解码为表示数据形状/结构的类。

package com.something.app.language;

import com.something.app.model.Language;
import io.micrometer.core.annotation.Timed;
import io.smallrye.mutiny.Uni;
import io.vertx.mutiny.core.Vertx;
import io.vertx.mutiny.ext.web.client.WebClient;

import javax.annotation.PostConstruct;
import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;
import java.util.List;

@ApplicationScoped
public class LanguageService {

    @Inject
    Vertx vertx;

    private WebClient client;

    @PostConstruct
    void init() {
        this.client = WebClient.create(vertx);
    }

    @Timed
    public Uni<List<Language>> getLanguages() {
        return this.client
                .get(80, "somehost.com", "/languages")
                .timeout(1000)
                .send()
                .onItem()
                .transform(resp -> {
                   if (resp.statusCode() == 200) {
                       return resp.bodyAsJson(List.class);
                   } else {
                       throw new RuntimeException("");
                   }
                });
    }
}
4

1 回答 1

0

有几种方法。首先,Vert.x 在后台使用了 Jackson,因此可以使用 Jackson 完成的所有事情都是可能的。

您可以使用resp.bodyAsJson(MyStructure.class),这将创建 MyStructure 的一个实例。

如果您有 JSON 数组,则可以将每个元素映射到对象类。

最后,您可以实现自己的正文编解码器(请参阅https://vertx.io/docs/apidocs/io/vertx/ext/web/codec/BodyCodec.html)。

于 2020-11-28T20:03:14.567 回答