配置verticle

在部署的时可以传递一个JSON形式的配置给verticle:

  1. JsonObject config = new JsonObject().put("name", "tim").put("directory", "/blah");
  2. DeploymentOptions options = new DeploymentOptions().setConfig(config);
  3. vertx.deployVerticle("com.mycompany.MyOrderProcessorVerticle", options);

这种配置可通过Context对象获得或直接使用config方法。

作为一个 JSON 对象返回的配置,您可以检索数据,如下所示:

  1. System.out.println("Configuration: " + config().getString("name"));