我正在尝试在执行 Ant 脚本时将时间戳作为上下文参数写入我的 context.xml 中。
我正在尝试以下操作:
我的 context.xml
<Parameter name="deployingTimeStamp"
value="16.07.2012" <!-- shall be changed! -->
override="true" />
我的 build.xml
<tstamp>
<format property="time" pattern="dd.MM.yyyy"
unit="hour"/>
</tstamp>
<replace file="${conf.dir}/dev/context.xml" >
<replacefilter token="deployingTimeStamp" value="${time}" />
</replace>
不幸的是,它不会替换该值,它只是替换名称“deployingTimeStamp”本身并将其更改为当前日期。
我怎么解决这个问题?