将一个属性文件扩展到另一个属性文件

时间:2018-08-23 13:36:21

标签: java properties properties-file

其中具有两个具有某些公共属性的属性文件,只想将这些公共属性隔离在另一个文件中,并将该属性文件包括到现有属性文件中即可。

first.properties file
a.city=newyork
a.country=usa
first.street=crew

second.properties file
a.city=newyork
a.country=usa
second.street=brew

我想创建一个单独的common.properties文件,该文件可以在其他属性文件中扩展,就像...

common.properties file
a.city=newyork
a.country=usa

first.properties file
include = common.properties
first.street=crew

second.properties file
include = common.properties
second.street=brew

我已尝试使用此参考,但这对https://commons.apache.org/proper/commons-configuration/userguide/howto_properties.html

没有帮助

预先感谢

0 个答案:

没有答案