[
https://issues.apache.org/jira/browse/CONFIGURATION-420?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Oliver Heger resolved CONFIGURATION-420.
----------------------------------------
Fix Version/s: 1.7
Resolution: Invalid
This is not a bug. OverrideCombiner works as expected.
> OverrideCombiner seems to ignore list nodes
> -------------------------------------------
>
> Key: CONFIGURATION-420
> URL: https://issues.apache.org/jira/browse/CONFIGURATION-420
> Project: Commons Configuration
> Issue Type: Bug
> Components: Interpolation
> Affects Versions: 1.6
> Reporter: Aniruddh Chitre
> Priority: Minor
> Fix For: 1.7
>
> Attachments: config-conf.xml, config-custom.xml, config.xml
>
>
> When using OverrideCombiner it seems to ignore any list nodes and always
> return properties/values for list node from the overridden file. See the
> attached files for an example of what I mean. The following code always
> returns the values from config-custom even if list-nodes mentions that the
> sysprops node is a list-node.
> URL fileURL = TestConfig.class.getResource("config-conf.xml");
>
> try
> {
> DefaultConfigurationBuilder configBuilder = new
> DefaultConfigurationBuilder(fileURL);
> CombinedConfiguration config =
> configBuilder.getConfiguration(true);
>
> System.out.println(config.getString("sysprops/testkey"));
>
> System.out.println(config.getString("configprops/testkey1"));
> }
> catch (ConfigurationException e)
> {
> e.printStackTrace();
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.