You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Oliver Heger (JIRA)" <ji...@apache.org> on 2013/05/01 16:22:16 UTC

[jira] [Commented] (CONFIGURATION-541) Support for Property files in MultiFileHierarchicalConfiguration. Currently only xml files are supported.

    [ https://issues.apache.org/jira/browse/CONFIGURATION-541?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13646612#comment-13646612 ] 

Oliver Heger commented on CONFIGURATION-541:
--------------------------------------------

When you do a SVN checkout from trunk, you will find class {{MultiFileConfigurationBuilder}} in the package org.apache.commons.configuration.builder.combined. The corresponding test class ({{TestMultiFileConfigurationBuilder}} can be inspected to find usage examples. The test class {{TestCombinedConfigurationBuilder}} also contains test cases which load a multi-file configuration in a combined configuration.

Unfortunately, the user's guide has not yet been updated.
                
> Support for Property files in MultiFileHierarchicalConfiguration. Currently only xml files are supported.
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: CONFIGURATION-541
>                 URL: https://issues.apache.org/jira/browse/CONFIGURATION-541
>             Project: Commons Configuration
>          Issue Type: Wish
>          Components: Build
>    Affects Versions: 1.8
>            Reporter: Meraj
>
> <?xml version="1.0" encoding="ISO-8859-1" ?>
> <configuration>
>   <header>
>     <result delimiterParsingDisabled="true" forceReloadCheck="true" loggerName="TestLogger"
>             config-class="org.apache.commons.configuration.DynamicCombinedConfiguration"
>             keyPattern="$$${sys:filename}">
>       <nodeCombiner config-class="org.apache.commons.configuration.tree.MergeCombiner"/>
>     </result>
>     <providers>
>       <provider config-tag="multifile"
>          config-class="org.apache.commons.configuration.DefaultConfigurationBuilder$FileConfigurationProvider"
>          configurationClass="org.apache.commons.configuration.MultiFileHierarchicalConfiguration"/>
>     </providers>
>   </header>
>   <override>
> 	<system />
>     <multifile filePattern="/usr/config/$$$${sys:filename}.xml"
>                config-name="clientConfig1" delimiterParsingDisabled="true" schemaValidation="false">
>        <reloadingStrategy refreshDelay="500"
>           config-class="org.apache.commons.configuration.reloading.FileChangedReloadingStrategy"/>
>     </multifile>
>    <multifile filePattern="/usr/configclient/$$$${sys:filename}.properties"
>                config-name="clientConfig1" delimiterParsingDisabled="true" schemaValidation="false">
>        <reloadingStrategy refreshDelay="500"
>           config-class="org.apache.commons.configuration.reloading.FileChangedReloadingStrategy"/>
>     </multifile>
>     <xml fileName="portal/default.xml"
>          config-name="defaultConfig" delimiterParsingDisabled="true" schemaValidation="false">
>       <reloadingStrategy refreshDelay="500"
>           config-class="org.apache.commons.configuration.reloading.FileChangedReloadingStrategy"/>
>     </xml>
>   </override>
> </configuration> 
> in the above MultiFileHierarchicalConfiguration config file, I want to load properties from both xml and properties file. Currently, in 1.8, only xml is supported. for .properties file, I get a SAX parsing exception.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira