在 Vert.x Web 客户端手册中有一个将传入的 JSON 响应解码为 POJO 的示例:
client
.get(8080, "myserver.mycompany.com", "/some-uri")
.as(BodyCodec.json(User.class))
.send(ar -> {
// Process the response
})
有没有办法将传入的 JSON 数组解码为对象集合?
在 Vert.x Web 客户端手册中有一个将传入的 JSON 响应解码为 POJO 的示例:
client
.get(8080, "myserver.mycompany.com", "/some-uri")
.as(BodyCodec.json(User.class))
.send(ar -> {
// Process the response
})
有没有办法将传入的 JSON 数组解码为对象集合?
我不相信您可以使用 aBodyCodec
将内容直接转换为对象集合。
但是,您将 Vert.x 核心Json
类与主体一起使用Buffer
client
.get(8080, "myserver.mycompany.com", "/some-uri")
.send(ar -> {
if (ar.succeeded()) {
Buffer body = ar.result().body();
List<User> users = Json.decodeValue(body, new TypeReference<List<User>>() {});
} else {
// ...
}
});