mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 03:00:42 -04:00
The Apache Softare Foundation used to maintain an umbrella project named Jakarta but it was retired on 2011. This name now conflicts with the new name for Java EE under the Eclipse Foundation. Rename most of the packages to be more consistent. Some other packages remain but they will require intervention by their corresponding maintainers. Approved by: thierry (mentor), makc Differential Revision: https://reviews.freebsd.org/D21902
23 lines
841 B
Text
23 lines
841 B
Text
Commons Configuration provides a generic configuration interface which enables
|
|
an application to read configuration data from a variety of sources. Commons
|
|
Configuration provides typed access to single, and multi-valued configuration
|
|
parameters.
|
|
|
|
Configuration parameters may be loaded from the following sources:
|
|
|
|
* Properties files
|
|
* XML documents
|
|
* Windows INI files
|
|
* Property list files (plist)
|
|
* JNDI
|
|
* JDBC Datasource
|
|
* System properties
|
|
* Applet parameters
|
|
* Servlet parameters
|
|
|
|
Different configuration sources can be mixed using a ConfigurationFactory and
|
|
CompositeConfiguration. Additional sources of configuration parameters can be
|
|
created by using custom configuration objects. This customization can be
|
|
achieved by extending AbstractConfiguration.
|
|
|
|
WWW: http://commons.apache.org/proper/commons-configuration/
|