Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个返回纯文本的 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 或更高版本中可用