我正在尝试在连接到mongodb实例时设置代理设置。 我尝试过以下代码段
System.setProperty("http.proxyHost", "abc.com");
System.setProperty("http.proxyPort", "8080");
System.setProperty("https.proxyHost", "abc.com");
System.setProperty("https.proxyPort", "8080");
但请求似乎没有通过代理。 有没有办法在mongo-java驱动api方法中添加代理配置?