gpt4 book ai didi

OkHttp 3 客户端如何为故障转移指定备用地址?

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

在文档中指出

If your service has multiple IP addresses OkHttp will attempt alternate addresses if the first connect fails

但我看不出您在构建请求对象时如何指定备用地址?

最佳答案

您可以尝试自己覆盖 DNS 以实现它。

client.setDns(new Dns() {
@Override
public List<InetAddress> lookup(String hostname) throws UnknownHostException {
InetAddress ip1 = Inet4Address.getByName("127.0.0.1");
InetAddress ip2 = Inet4Address.getByName("192.168.1.9");
return Arrays.asList(ip1, ip2);
}
});

关于OkHttp 3 客户端如何为故障转移指定备用地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39873222/

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