0

在 ProxySettings.groovy 文件中,如何在 http.nonProxyHosts 属性中指定 2 个或更多主机?

myproxy=['http.proxyHost':'proxy.mydomain.com', 'http.proxyPort':'8080', 'http.proxyUser':'XPTO', 'http.proxyPassword':'123456', 'http.nonProxyHosts': ??? ]
currentProxy="myproxy"

在 ???我尝试了以下没有效果:

['200.150.1.100', '201.160.1.200'] 
'200.150.1.100,201.160.1.200'
'200.150.1.100;201.160.1.200'
4

1 回答 1

3

从这里开始:How do I set the proxy to be used by the JVM in the comments 它看起来像管道 (|) 是选择的分隔符。尝试:

'200.150.1.100|201.160.1.200'
于 2013-09-16T20:16:06.350 回答