Vert.x HttpClient

Posted tangjizhong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vert.x HttpClient相关的知识,希望对你有一定的参考价值。

1、加入依赖

<dependency>
 <groupId>io.vertx</groupId>
 <artifactId>vertx-web-client</artifactId>
 <version>3.8.5</version>
</dependency>

2、编写GET请求

import io.vertx.core.AbstractVerticle;
import io.vertx.core.Vertx;
import io.vertx.core.buffer.Buffer;
import io.vertx.ext.web.client.HttpResponse;
import io.vertx.ext.web.client.WebClient;


public class MainVerticle extends AbstractVerticle {
    public static void main(String[] args) {
        Vertx.vertx().deployVerticle(new MainVerticle());
    }

    @Override
    public void start() throws Exception {
        WebClient client = WebClient.create(vertx);
        client.getAbs("http://www.baidu.com").send(ar -> {
            if (ar.succeeded()) {
                HttpResponse<Buffer> response = ar.result();
                System.out.println(response.body().toString());
            } else {
                System.out.println("发送请求失败:" + ar.cause().getMessage());
            }
        });
    }
}

POST请求和更多解释请到我的独立博客看原文 https://dev-tang.com/post/2020/06/httpclient-vert.x.html

以上是关于Vert.x HttpClient的主要内容,如果未能解决你的问题,请参考以下文章

Vert.x - 带有 DataInputStreams 的 GraphQL 订阅

Vert.x 创建HTTP服务-原理篇

Vert.x 操作数据库

Vert.x 操作Redis

Vert.x系列,加载静态资源文件

Flink集成Vert.x数据库异步驱动