Vert.x 中的 HttpEndpoint 和代理选项
HttpEndpoint and Proxy Options in Vert.x
我正在研究 Vert.x 注册 HttpEndPoints 的服务发现。有没有办法在发布 HttpEndPoint 到服务发现时指定 ProxyOptions?
谢谢,
-拉贾尼
您不在创建记录时提供选项,而是在检索服务引用时提供选项。
ServiceReference reference = discovery.getReferenceWithConfiguration(record, new HttpClientOptions()
.setProxyOptions(proxyOptions)
.toJson());
这在文档的 retrieving a service reference 部分进行了解释:
When retrieving a service reference you can pass a JsonObject used to
configure the service object.
我正在研究 Vert.x 注册 HttpEndPoints 的服务发现。有没有办法在发布 HttpEndPoint 到服务发现时指定 ProxyOptions?
谢谢, -拉贾尼
您不在创建记录时提供选项,而是在检索服务引用时提供选项。
ServiceReference reference = discovery.getReferenceWithConfiguration(record, new HttpClientOptions()
.setProxyOptions(proxyOptions)
.toJson());
这在文档的 retrieving a service reference 部分进行了解释:
When retrieving a service reference you can pass a JsonObject used to configure the service object.