如果我有2个要加载的属性文件,并且都包含相同的属性$ {Product.Version},这将在我的build.xml脚本中考虑到,为什么?
的build.xml
...
<property file="sort.properties" />
<property file="master.properties" />
...
<echo message="${Product.Version} />
sort.properties
Product.Version = 7.00
master.properties
Product.Version = 6.00
答案 0 :(得分:4)
Product.Version将等于7.0,一旦在ant中设置了属性,它将不会被稍后在脚本中设置属性的另一次尝试覆盖。