其中具有两个具有某些公共属性的属性文件,只想将这些公共属性隔离在另一个文件中,并将该属性文件包括到现有属性文件中即可。
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
没有帮助预先感谢