H,
我需要在安装期间获取用户输入,然后将其用作在 processPanle 中执行的应用程序的参数。如何在 processPanel 中获取包含用户输入的变量?
H,
我需要在安装期间获取用户输入,然后将其用作在 processPanle 中执行的应用程序的参数。如何在 processPanel 中获取包含用户输入的变量?
${}
您可以使用如下示例中所示的语法来引用变量。
userInputSpec.xml(片段):
<field type="rule" variable="tomcat_http_port">
<spec txt="HTTP-Port:" id="panel0.field2.label" set="0:80" layout="N:5:5" />
</field>
process.xml(片段):
<job name="Launching Browser">
<executeclass name="edu.ccdb.util.BareBonesBrowserLauncher">
<arg>http://localhost:${tomcat_http_port}/klaros-web</arg>
</executeclass>
</job>