如何根据ANT中的条件设置属性值?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何根据ANT中的条件设置属性值?相关的知识,希望对你有一定的参考价值。
我想在我的ant build.xml文件中创建一个条件,如果我将domainName
属性设置为Stage
,则将appbox1URL
属性值设置为http://10.xxx.xxx.xxx1
并将appbox2URL设置为http://10.xxx.xxx.xxx
。
但是,当我运行build.xml文件时,它不会设置appbox url值。难道我做错了什么?
<property name="appbox1URL" value=""/>
<property name="appbox2URL" value=""/>
<condition property="appbox1URL" value="http://10.xxxx.xxx.xxx" property="appbox2URL" value="http://10.xxx.xxx.xxx">
<equals arg1="${domainName}" arg2="zzz"/>
</condition>
答案
使用condition任务,但您只能为每个条件设置一个属性(而不是两个,因为您尝试在OP中设置)。
因此,将分配分成两个condition
指令:
<condition property="appbox1URL" value="http://10.202.111.111">
<equals arg1="${domainName}" arg2="Stage"/>
</condition>
<condition property="appbox2URL" value="http://10.202.111.112">
<equals arg1="${domainName}" arg2="Stage"/>
</condition>
以上是关于如何根据ANT中的条件设置属性值?的主要内容,如果未能解决你的问题,请参考以下文章