在Proxy Settings.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'
答案 0 :(得分:3)
从这里:How do I set the proxy to be used by the JVM在注释中看起来像管道(|)是选择的分隔符。试试:
'200.150.1.100|201.160.1.200'