在JAVA_OPTS中绕过非代理主机

时间:2014-09-09 12:08:19

标签: java gatein

我在通过

获取门户网站服务器的standalone.conf.bat中添加非代理主机
-Dhttp.proxyHost=10.111.1.00 -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=localhost|127.0.0.1|172.16.31.* "

当我启动服务器时出现以下错误。

c:\jboss-jpp-6.1.0\jboss-jpp-6.1\bin>standalone.bat
Calling "c:\jboss-jpp-6.1.0\jboss-jpp-6.1\bin\standalone.conf.bat"
'127.0.0.1' is not recognized as an internal or external command,
operable program or batch file.

1 个答案:

答案 0 :(得分:2)

无法发表评论,因为我没有足够的声誉。当我在Windows中将其设置为环境变量时,我也遇到了这个问题。事实证明你需要使用^来逃避而不是角色。

http://www.robvanderwoude.com/useless.php#EscapeChar

所以这对我有用

-Dhttp.nonProxyHosts=localhost^|127.0.0.1^|*.foo.com