蚂蚁获取任务超时问题



我有一个返回纯文本的Web服务。我将添加超时,如果服务未启动,则将属性设置为 true。我该怎么做?下面是我的代码。

<get src="localhost:8080/order/available" dest="${propertyname}"/>

我得到:

get 不支持"maxtime"属性

你可以使用这样的东西。 首先下载到文件,然后检查文件是否存在:

<delete file="${testfile}"/>
<get src="localhost:8080/order/available" dest="${testfile}" maxtime="5000" />
<available file="${testfile}"  property="${propertyname}" value="true"/>

编辑:根据他们的文档,maxtime 属性在 ant 1.8.0 或更高版本中可用

相关内容

  • 没有找到相关文章

最新更新