私は 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("");
}
});
}
}