The Commons Configuration software library provides a generic configuration interface which enables a Java application to read configuration data from a variety of sources.
0
votes
1answer
47 views
Very simple Apache-commons configuration examlpe throws ConfigurationRuntimeException
I'm trying to test a very simple example given in the Apache-commons configuration library user's guide regarding declaring and creating beans. I copied the code in the example almost word by word, ...
1
vote
1answer
58 views
Very simple Apache-commons configuration examlpe throws NoClassDefFoundError
I'm trying to test a very simple example given in the Apache-commons configuration library user's guide regarding declaring and creating beans. I copied the code in the example almost word by word, ...
0
votes
1answer
33 views
Why the code doesn't change .properties file
I have the following code which must add new values to the existing properties in the .properties file of, if the property doesn't exist - create it.
public String ...
1
vote
1answer
28 views
Extended Properties for Spring Framework
Looking for a solution that will provide us more functionality within Spring properties such as:
nested structures
maps/lists
properties referencing other properties. Example:
city.name=Toronto
...
0
votes
3answers
50 views
How to get list of properties using apache.commons
I need to get the list of properties which are in the .properties file. For example, if have the following .properties file:
users.admin.keywords = admin
users.admin.regexps = test-5,test-7
...
0
votes
0answers
51 views
Problems editing configuation file
when I add a new value to the property string this way:
// adds a new value to the proper field in rules.properties
public String addNewPropertyValue(String newValue, String property){
if ...
2
votes
2answers
39 views
apache commons configuration: setting an xml namespace for the root element
When saving a configuration file, I need to specify the xmlns for the root element (by default <configuration>). The reason is, I validate (with a schema) upon loading the configuration file ...
0
votes
0answers
67 views
How to change .properties file using apache.commons.configuration
I have an app where I filter messages according to some rules(existing some keywords or regexps). These rules are to be stored in .properties file(as they must be persistent). I've figured out how to ...
0
votes
3answers
52 views
How to find the string which begins with the exact word
I have an app with GUI on gwt. using this gui I'd like to change(and this is the subquestion: how this would be better to change the .properties file(I know how to read properties from them using ...
0
votes
3answers
186 views
NoClassDefFoundError: org/apache/commons/configuration/ConfigurationException
I have an app in which I need to parse configuration file and when run this program on server it gives the following trace:
java.lang.NoClassDefFoundError: ...
3
votes
2answers
115 views
Apache commons configuration cache
I'm looking how I can cache my property in apache-commons-configuration framework. It tooks a long time to obtain a property from different places, defined in my config.xml. So, is there a cached (by ...
0
votes
0answers
26 views
where does apachie commons configuration reads files from?
I am trying to use apache commons configuration, with code that looks like this:
config = new PropertiesConfiguration("conf.properties");
From what physical path will it try to read the file?
What ...
0
votes
1answer
55 views
Apache Java Configuration API - configuration profiles (inheritance)?
When i was working with Zend Framework, I used to have .ini configuration files, where I could do this:
[production]
setting1 = abc
setting2 = def
[development : production]
setting1 = ghi
And ...
0
votes
1answer
123 views
Apache Commons Configuration: Save properties file within a jar
All the apologies for disturbing you. I have an issue with the apache commons configuration. I have a properties file that is located at the src folder of an application I am building (with Eclipse). ...
2
votes
1answer
95 views
Tracking changes with Apache Commons Configuration
For an upcoming project I am planning to use Apache Commons Configuration.
I would like to use the library for reading and writing all configurations of the given application from/to a database.
We ...
1
vote
1answer
282 views
Singleton configuration class? concrete example
I have started reading the Apache commons documentation but its very extensive so I am hoping someone can answer a simple question so I don't need to read all of it just to start using it for basic ...
0
votes
0answers
64 views
How to ignore DTD Validation in XML (Apache Commons Configurations)
I have an XML which has a DTD schema validator.
However, i am behind a proxy that i cannot have a connection to the internet. It would be impossible for me to modify the XML to change the DTD URI to ...
0
votes
0answers
38 views
Two keys with the same values (Apache Commons Configurations)
I have a properties file with two keys containing the same values.
I wish to have key 2's value point to key 1 such that i do not have to repeat "Something". Is it possible?
pm.properties file
...
-1
votes
2answers
210 views
how to read complex xml using common configuration java
I need to read complex XML files using common configuration. can somebody help me?
<configurations>
<configuration type="application configuration">
<group id="1" ...
1
vote
0answers
68 views
Replacing Default Configuration Iterpolator with Custom
I have been trying to register a custom configuration interpolator in the commons configuration that would take care of some fallback values by default.
Here is the code for interpolator.
...
1
vote
1answer
156 views
Can I provide my own variable interpolator for spring?
I've learnt that I can provide Spring with a <context:property-placeholder> element, which appears to use a PropertyPlaceholderConfigurer to interpolate variables (i.e. replace tokens like ...
1
vote
1answer
204 views
Can I use both arrays and non-arrays with Apache Commons Config?
With the following properties file:
foo=hello, world!
bar=first,second
I would like to retrieve the first item as a string and the second as an array. I would have thought that getString vs ...
0
votes
1answer
143 views
Loading updated properties automatically from multiple properties files
My requirement is to update the configurations of my application automatically when a change is made to a properties file.
For maintaining the properties, I am using PropertiesConfiguration from ...
1
vote
1answer
351 views
Trouble integrating a library using Apache Commons Config with Spring project using PropertyPlaceholderConfigurer
I have a custom library that sends a JMS notification. The idea is that you can use the library by simply by setting some properties in your project.
The custom library is using the Apache Commons ...
2
votes
2answers
219 views
What libraries exist for multitenant/conditional configurations for Java?
I'm trying to find a solution for configuring a server-side Java application such that different users of the system interact with the system as if it were configured differently (Multitenancy). For ...
2
votes
2answers
541 views
Any Apache Commons-Configuration replacements / competitors?
I recently tried to use Apache Commons-Configuration to manage some local XML configuration files. It drastically falls short on ease of use (can't load empty config files, CombinedConfiguration ...
0
votes
1answer
246 views
apache common configuration library: corrupted property file
I have got a corrupted property file from customer. The file is modified by application to update version number. The code uses apache commons configuration. When I tested, the library always seems ...
2
votes
3answers
1k views
What going wrong in using PropertiesConfiguration?
For updating in my .properties file I am using Apache Commons Configuration's PropertiesConfiguration. But as I am using the code as :
try {
PropertiesConfiguration properties = new ...
1
vote
1answer
438 views
Is it possible to supply a new PropertiesConfiguration file at runtime?
Background:
I have a requirement that messages displayed to the user must vary both by language and by company division. Thus, I can't use out of the box resource bundles, so I'm essentially writing ...
1
vote
1answer
1k views
what is apache common configuration
Can some one throw some light on what is common configuration (apache common configuration)?
It will he helpful if some one can explain it with some use-case.
Also any links (other than google) ...
1
vote
1answer
981 views
How To Make Commons Configuration's setListDelimiter Work?
I would like to use an alternate list delimiter in Apache Commons Configuration. However, despite trying a great many different ways of accessing a Configuration object and setting its list delimiter, ...
3
votes
1answer
744 views
Using Apache Commons Configuration to do variable interpolation, i.e. ${variable}, with a list of values in a properties file
I am using Apache Commons Configuration to read a properties file, and I am perfectly able to do variable interpolation, and also to retrieve multi-valued properties as a list. However, I haven't been ...
0
votes
1answer
1k views
Reference to file for PropertiesConfiguration with Spring
My application is running on Jboss 4.2.2 GA with Spring 2.5.6, Richfaces 3.1.6.SR1, JSF 1.1_02.
What I want is to have a porpertie file outside my ear which will contain s.th. like
...
7
votes
2answers
4k views
How to write multiple line property value using PropertiesConfiguration?
I have a properties file with a property with a List value (comma separated), how to write this property in a multi-line ? (backslash after the comma)?
I can't find anything about this or at least ...
4
votes
1answer
638 views
Query empty XML elements with attributes using apache commons configuration xpath
I'm using the apache commons configuration XMLConfiguration object with the XPATH expression engine to query an XML file. I am new to xpath and apache commons and am having trouble with the syntax.
...
2
votes
1answer
189 views
Cannot save to commons config in JBoss 5.1
I am writing a web application that uses Apache Commons config to read/write a system.properties file. The file itself is placed in WEB-INF/classes/config. Reading is no problem, and I can write to it ...
1
vote
2answers
211 views
Get specific XML Subvalues with Commons Configuration
Lets say we have the following XML:
<root>
<sub>
<id>1</id>
<values>
<value>1</value>
...
-1
votes
3answers
609 views
After mvn install I try to run main, but I get a NoClassDefFoundError in ConfigurationException
I created a maven project and I have written for weeks an application and want to run it in the end... But I can't.
I get the following stacktrace when executing my .jar:
...
1
vote
1answer
591 views
Java, Apache Commons Configuration XML attributes
I'm reading config from an XML file using Apache's commons.configuration. In one of the sections, I have several lines in the form of:
<bla attr1="something" attr2="something else" />
...
2
votes
1answer
273 views
addProperty including blanks with XMLConfiguration
I'm using the Apache Commons Configuration. How can I add a property (String with blanks) to the configuration that I only get one single property?
config.addProperty("date", "08.05.2011, 15:20");
...
3
votes
2answers
729 views
XMLConfiguration to String
I'm using the Apache Commons Configuration. How can I get directly a String of the XMLConfiguration without saving it to a file?
Thank you very much.
1
vote
2answers
1k views
Format XML output with apache commons configuration XMLConfiguration
I am using the apache commons configuration XMLConfiguration to build and save an XML file.
When saving there is no formatting.
I get something like:
<root>
<node>
<child>
...
1
vote
1answer
219 views
unicode problem with apache common configuration
I am using Apache Commons Configuration for resource bundle generation. As I read from different locale bundle and writing on to target bundle the value is encoding into unicodes values which i don't ...
2
votes
1answer
509 views
Commons - Configuration CompositeConfiguration and Preferences
I am using CompositeConfiguration to read properties from multiple sources (like .propeties files, xml files, System properties etc) as below.
ConfigurationFactory factory = new ...
1
vote
1answer
764 views
Good example of Spring Configuration using java.util.prefs or Commons Configuration
One application I'm working on has several URLs and other information that is instance specific. The first pass uses a typical Spring PropertyPlaceholderConfigurer with a properties file:
<bean ...
6
votes
1answer
950 views
How to load multiple configuration files using apache common configuration(java)
I have a main conf file which I load using apache common configuration class.
I have a requirement where user can specify a conf file and values in those file will override the values in main conf.
...
10
votes
1answer
1k views
Guice and general application configuration
For a monitoring software written in Java I consider using Google Guice as DI provider. The project needs to load its configuration from an external resource (file or database). The application is ...
1
vote
1answer
642 views
dynamic reload in apache DatabaseConfiguration
Has anyone developed a dynamic reload mechanism for the apache commons database configuration object?
1
vote
2answers
1k views
Apache Commons Configuration trigger event on property file change
I'm using Apache Commons Configuration library to store my app properties.
I can monitor changes of property file using FileChangedReloadingStrategy and it works perfectly.
What I would like to do ...