更新1:确实有效。不知道为什么,但是我也尝试将其作为SystemProperty与主机一起使用,并且有效。然后,我删除了主机并也工作了。
所以最后修复工作jetty.xml连接器conf:
<Call name="addConnector"> <Arg> <New > <Set name="host"><SystemProperty name="jetty.host" /></Set> <Set name="port"><SystemProperty name="jetty.port" default="8080"/></Set> <Set name="maxIdleTime">300000</Set> <Set name="Acceptors">4</Set> <Set name="statsOn">false</Set> <Set name="confidentialPort">8443</Set> <Set name="lowResourcesConnections">20000</Set> <Set name="lowResourcesMaxIdleTime">5000</Set> </New> </Arg></Call>



