How to load multiple configuration files using apache common configuration(java)

后端 未结 3 1396
耶瑟儿~
耶瑟儿~ 2021-02-07 11:52

I have a main conf file which I load using apache common configuration class. I have a requirement where user can specify a conf file and values in those file will override the

3条回答
  •  孤城傲影
    2021-02-07 12:13

    I think you want something similar to the mechanism described here:

    CompositeConfiguration config = new CompositeConfiguration();
    config.addConfiguration(new PropertiesConfiguration("user.properties"));
    config.addConfiguration(
        new PropertiesConfiguration("application.properties"));
    // user preferences have precedence over application preferences
    

    Reference:

    • CompositeConfiguration

提交回复
热议问题