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 2016/07/10 20:07:11 UTC

[jira] [Resolved] (CONFIGURATION-636) Allow a user-defined order in the PropertiesConfigurationLayout.save method.

     [ https://issues.apache.org/jira/browse/CONFIGURATION-636?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Oliver Heger resolved CONFIGURATION-636.
----------------------------------------
       Resolution: Fixed
    Fix Version/s: 2.1

Fixed in SVN in revision 1752109. Many thanks.

> Allow a user-defined order in the PropertiesConfigurationLayout.save method.
> ----------------------------------------------------------------------------
>
>                 Key: CONFIGURATION-636
>                 URL: https://issues.apache.org/jira/browse/CONFIGURATION-636
>             Project: Commons Configuration
>          Issue Type: Improvement
>          Components: Format
>    Affects Versions: 2.0
>            Reporter: Tim Lark
>             Fix For: 2.1
>
>
> For .properties file manipulation, I have a use case that requires something like "addKeyAfterKey(String keyToAdd, String afterKey)".  This allows a property to be written after some other property when saving.
> I have extended PropertiesConfigurationLayout to accomplish this new behavior.  Unfortunately, the save method iterates over a private member (layoutData), so I have no control over the final file order.
> An easy fix for my use case would be to change line 564 of PropertiesConfigurationLayout.java to use the public getKeys() method instead of layoutData.keySet():
> {noformat}
> FROM: for (String key : layoutData.keySet())
> TO:   for (String key : getKeys())
> {noformat}
> Then I could override getKeys() to return the required order for saving.



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