gpt4 book ai didi

java - 如何使用 https 将 spring-config-server 与 vertx 一起使用?

转载 作者:行者123 更新时间:2023-11-30 12:04:41 24 4
gpt4 key购买 nike

我有一个 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();

最佳答案

尝试通过在配置中提供 httpClientConfiguration 元素来指定 HttpClientOptions:

 ...
.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)));
...

关于java - 如何使用 https 将 spring-config-server 与 vertx 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56971199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com