问题 I have problem with vertx HttpClient. Here's code which shows that tests GET using vertx and plain java. Vertx vertx = Vertx.vertx(); HttpClientOptions options = new HttpClientOptions() .setTrustAll(true) .setSsl(false) .setDefaultPort(80) .setProtocolVersion(HttpVersion.HTTP_1_1) .setLogActivity(true); HttpClient client = vertx.createHttpClient(options); client.getNow("google.com", "/", response -> { System.out.println("Received response with status code " + response.statusCode()); });