我有一个vert.x应用程序,它正在使用spring-config-server获取值。当config-server位于http上时,代码可以正常工作,但是当spring-config-server移至https时,代码将不起作用。
Vertx vertx = Vertx.vertx();
List<ConfigStoreOptions> configStores = new ArrayList<>();
List<String> configUrls = CoreConfigBean.getUrls(environment);
configUrls.forEach(url -> {
configStores.add(new ConfigStoreOptions().setType("spring-config-server")
.setConfig(new JsonObject().put("url", url).put("timeout",
Long.parseLong(ConfigurationUtil.CONFIG_SERVER_TIME_OUT))));
});
ConfigRetrieverOptions configRetrieverOptions = new ConfigRetrieverOptions();
configStores.forEach(configRetrieverOptions::addStore);
ConfigRetriever retriever = ConfigRetriever.create(vertx, configRetrieverOptions.setScanPeriod(0));
CompletableFuture<JsonObject> configLoader = new CompletableFuture<JsonObject>();
retriever.getConfig(json -> {
if (json.succeeded()) {
JsonObject jsonObject = json.result();
if (jsonObject != null) {
jsonObject.iterator().forEachRemaining(sourceValue -> System.setProperty(sourceValue.getKey(),
sourceValue.getValue().toString()));
}
configLoader.complete(json.result());
json.mapEmpty();
retriever.close();
vertx.close();
} else {
json.otherwiseEmpty();
retriever.close();
vertx.close();
}
});
configLoader.get();
答案 0 :(得分:0)
尝试通过在配置中提供HttpClientOptions
元素来指定httpClientConfiguration
:
...
.setConfig(new JsonObject()
.put("url", url)
.put("timeout", Long.parseLong(ConfigurationUtil.CONFIG_SERVER_TIME_OUT))
.put("httpClientConfiguration", new JsonObject()
.put("trustAll", true)
.put("ssl", true)));
...