You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "John Henriksson (JIRA)" <ji...@apache.org> on 2015/05/06 15:49:59 UTC

[jira] [Created] (CONFIGURATION-600) Loading xml configuration file as a stream does not work with multi configurations

John Henriksson created CONFIGURATION-600:
---------------------------------------------

             Summary: Loading xml configuration file as a stream does not work with multi configurations
                 Key: CONFIGURATION-600
                 URL: https://issues.apache.org/jira/browse/CONFIGURATION-600
             Project: Commons Configuration
          Issue Type: Bug
    Affects Versions: 1.8
            Reporter: John Henriksson


When using the commons configuration inside a WAR loading a XML file works fine when done like this:

InputStream is = this.getClass().getClassLoader().getResourceAsStream("/conf/main.xml");
builder.load(is);

The problem is when the main.xml reference other xml files:
configuration>
    <xml fileName="child1.xml"/>
</configuration>

If the structure of the war is:
/
/classes
/conf/child1.xml
/conf/main.xml

There seems to be no way to pick up child1.xml from main.xml when loading main.xml as a stream.




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)