如何在mongo-java驱动程序操作中添加代理配置?

时间:2017-10-04 05:31:22

标签: java mongodb proxy mongo-java

我正在尝试在连接到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方法中添加代理配置

0 个答案:

没有答案