1
我試圖執行運行分叉通過Maven的端口號被存儲爲環境變量「碼頭啓動端口」如何設置參考
如何參考設爲變量碼頭配置文件中的變量在碼頭配置文件中爲此標籤 <Set name="port"><Property name="jetty.port" default="8081"/></Set>
?
的jetty.xml的樣子:
<Configure id="FileServer" class="org.eclipse.jetty.server.Server">
<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.nio.SelectChannelConnector">
<Set name="host"><Property name="jetty.host" /></Set>
<Set name="port"><Property name="jetty.port" default="8081"/></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>
</Configure>
感謝。