Type | Changes | By |
| HierarchicalConfigurationXMLReader stores comments as text nodes Fixes
30597
. Thanks to Oliver Heger . |
epugh
|
| project.xml contains bad dependencies Fixes
30648
. Thanks to Ricardo Gladwell . |
epugh
|
| clearXmlPrope rty doesn't remove list properties completely Fixes
30234
. Thanks to Brent Worden . |
epugh
|
| new ConfigurationDynaBean Fixes
30545
. Thanks to Ricardo Gladwell . |
epugh
|
| new ConfigurationMap and ConfigurationSet Fixes
29611
. Thanks to Ricardo Gladwell . |
epugh
|
| Problem adding property XMLConfiguration Fixes
30598
. Thanks to Ricardo Gladwell . |
epugh
|
| ConfigurationXMLDocument removed until post 1.0. |
epugh
|
| DatabaseConfiguration doesn't support List properties. Fixes
29734
. |
epugh
|
| Fixed several bugs related to XMLConfiguration:
- 30074 - Can't add a new property as an attribute in XMLConfiguration
- 30205 - XMLConfiguration doesn't support attribute names with a dot
- 30209 - XMLConfiguration doesn't ignore comments
- 30212 - XMLConfiguration.save() doesn't escape reserved characters
|
ebourg
|
| Added save methods in XMLConfiguration similar to PropertiesConfiguration to save the configuration to another file (bug 29721). |
ebourg
|
| Removed the DOM4J implementations in favor of the DOM ones. DOMConfiguration has been renamed to XMLConfiguration, and HierarchicalDOMConfiguration to HierarchicalXMLConfiguration. The elements parsed by the ConfigurationFactory have been changed accordingly. |
ebourg
|
| Added a save() method to PropertiesConfiguration and save(Writer out), save(OutputStream out), save(OutputStream out, String encoding) to BasePropertiesConfiguration. |
ebourg
|
| List values are now properly stored as comma separated values in the Properties object returned by ConfigurationConverter.getProperties() (Bug 29607) |
ebourg
|
| Introduced a ConversionException thrown when the value of a property is not compatible the type requested. It replaces the ClassCastException and the NumberFormatException thrown previously. |
ebourg
|
| Tokens like ${ref} in a PropertyConfiguration are now properly saved (Bug 29366). |
ebourg
|
| The getList() method of a CompositeConfiguration now returns the list composed of the elements in the first matching configuration and the additional elements found in the in memory configuration (Bug 28660). |
ebourg
|
| SubsetConfiguration returns a List on getList(). AbstractConfiguration wouldn't properly deal with a List, only with a Container for getList()! Thanks to jschaible for the unit test. |
epugh
|
| Direct support of XML via DOM. New classes DOMConfiguration and HierarchicalDOMConfiguration. |
jschaible
|
| Update build to not include test configuration files in resulting jar. |
jschaible
|
| Refactored JNDIConfiguration to use AbstractConfiguration. |
ebourg
|
| Fixed bug 27427 by refactoring out the subset logic into a SubsetConfiguration. |
ebourg
|
| Reapply the ConfigurationXMLDocument that went missing during migration out of sandbox. |
oheger
|
| Apply ASL 2.0 license. Thanks to Jeff P ainter for scripting the conversion! |
epugh
|
| Changed CompositeConfiguration to extend from AbstractConfiuration. This means that the behavior of CompositeConfiguration is much similar to others like PropertiesConfiguration in handling of missing keys, interpolation, etc.. Previously CompositeConfiguration had quite a few differences. |
epugh
|
| Removed "defaults" from BaseConfiguration. Defaults are now done via using a CompositeConfiguration, either directly or via a ConfigurationFactory. if you want to save changes made to a Configuration, then you use a CompositeConfiguration and get back the inMemoryConfiguration that has the delta of changes. Added a bit of documentation on this. |
epugh
|
| Bugzilla 16504 Enhancement: Configuration Comparator |
epugh
|
| Bugzilla 26694 (BaseConfiguration: containsKey ignores default properties). I have changed it so that now the defaults are paid attention to. |
epugh
|
| The Configuration interface now supports BigDecimal and BigInteger numbers. |
ebourg
|
| ConfigurationException is now thrown by public methods instead of Exception or IOException or whatnot. |
epugh
|
| For configuration based on properties files, allow characters like \n etc to be escaped and unescaped. |
ebourg
|
| New DatabaseConfiguration that uses a database to store the properties. It supports 2 table structures :
- one table per configuration (2 colums key/value)
- one table for multiple configurations (2 columns key/value + 1 column for the name of the configuration)
|
ebourg
|
| ConfigurationFactory now supports the hierarchicalDom4j element in configuration definition file |
oheger
|
| Change all Vector objects to List objects. |
ebourg
|
| ConfigurationFactory now supports two types of properties files, additional and override. Additional properties add each other together. Override override each other. This allows you to have a single property that is either aggregated from a number of sources, or have a property that is overridden according to a specific order of sources. |
oheger
|
| AbstractConfiguration addProperty now delegates to an abstract addPropertyDirect implemented by BaseConfiguration. |
oheger
|
| Changed getString() method to throw a NoSuchElementException instead of "" if the configuration property doesn't exist. |
kshaposhnikov
|
| Added AbstractConfiguration to make it easier to create subclasses by only having to implement the methods required. |
kshaposhnikov
|
|
ClassPropertiesConfiguration Additions
- Use the classloader of class that is provided by the constructor.
- Add a constructor that indicates whether to use relative or absolute.
- Change getPropertyStream to utilize the relative or absolute flag.
- Add a test case that checks that absolute paths work.
|
bdunbar
|
|
JNDIConfiguration.getKeys() AdditionThe JNDIConfiguration.getKeys() method was r eturning an unsupported operation error. However, this is an important method to have supported. |
epugh
|
|
CompositeConfiguration.getKeys() FixThe CompositeConfiguration.getKeys() method was returning an unordered list of configuration values. However, many apps expect the order that keys are returned to be the order they are added into the properties file. |
epugh
|