Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Read comma separated properties with configuration2 in java

Tags:

java

comma

I have this property:

move.patternfile.include = *1a.txt,*2a.txt

and I'm trying to put it in a list, using Apache commons configuration2.

The code I have is :

Configurations configs = new Configurations();
AbstractConfiguration config = configs.properties(new File(fileName));
config.setListDelimiterHandler(new DefaultListDelimiterHandler(','));

I can read all the others properties, but the one I want is still a 1 size list.

This is the command to retrieve the values :

List<String> linclude = configuration.getList(String.class, "patternfile.include");

Can you help please?

like image 567
n savoini Avatar asked Apr 22 '16 00:04

n savoini


2 Answers

Based on this it appears that the delimiter has to be set before the properties are read from the file. The code below works when I run it, but generates a warning.

Parameters params = new Parameters();
FileBasedConfigurationBuilder<PropertiesConfiguration> builder =
     new FileBasedConfigurationBuilder<PropertiesConfiguration>(
             PropertiesConfiguration.class).configure(params.fileBased()
             .setListDelimiterHandler(new DefaultListDelimiterHandler(','))
             .setFile(new File("test.properties")));
PropertiesConfiguration config = builder.getConfiguration();

List<String> linclude = config.getList(String.class, "patternfile.include");

System.out.println(linclude.size());
for(String item: linclude){
    System.out.println(item);
}

test.properties

patternfile.include = *1a.txt,*2a.txt

Output

2

*1a.txt

*2a.txt

Here is the warning I see when I run it:

Jun 26, 2016 2:12:17 AM org.apache.commons.beanutils.FluentPropertyBeanIntrospector introspect
WARNING: Error when creating PropertyDescriptor for public final void org.apache.commons.configuration2.AbstractConfiguration.setProperty(java.lang.String,java.lang.Object)! Ignoring this property.
java.beans.IntrospectionException: bad write method arg count: public final void org.apache.commons.configuration2.AbstractConfiguration.setProperty(java.lang.String,java.lang.Object)
    at java.beans.PropertyDescriptor.findPropertyType(Unknown Source)
    at java.beans.PropertyDescriptor.setWriteMethod(Unknown Source)
    at java.beans.PropertyDescriptor.<init>(Unknown Source)
    at org.apache.commons.beanutils.FluentPropertyBeanIntrospector.createFluentPropertyDescritor(FluentPropertyBeanIntrospector.java:177)
    at org.apache.commons.beanutils.FluentPropertyBeanIntrospector.introspect(FluentPropertyBeanIntrospector.java:140)
    at org.apache.commons.beanutils.PropertyUtilsBean.fetchIntrospectionData(PropertyUtilsBean.java:2234)
    at org.apache.commons.beanutils.PropertyUtilsBean.getIntrospectionData(PropertyUtilsBean.java:2215)
    at org.apache.commons.beanutils.PropertyUtilsBean.getPropertyDescriptor(PropertyUtilsBean.java:950)
    at org.apache.commons.beanutils.PropertyUtilsBean.isWriteable(PropertyUtilsBean.java:1466)
    at org.apache.commons.configuration2.beanutils.BeanHelper.isPropertyWriteable(BeanHelper.java:521)
    at org.apache.commons.configuration2.beanutils.BeanHelper.initProperty(BeanHelper.java:357)
    at org.apache.commons.configuration2.beanutils.BeanHelper.initBeanProperties(BeanHelper.java:273)
    at org.apache.commons.configuration2.beanutils.BeanHelper.initBean(BeanHelper.java:192)
    at org.apache.commons.configuration2.beanutils.BeanHelper$BeanCreationContextImpl.initBean(BeanHelper.java:669)
    at org.apache.commons.configuration2.beanutils.DefaultBeanFactory.initBeanInstance(DefaultBeanFactory.java:162)
    at org.apache.commons.configuration2.beanutils.DefaultBeanFactory.createBean(DefaultBeanFactory.java:116)
    at org.apache.commons.configuration2.beanutils.BeanHelper.createBean(BeanHelper.java:459)
    at org.apache.commons.configuration2.beanutils.BeanHelper.createBean(BeanHelper.java:479)
    at org.apache.commons.configuration2.beanutils.BeanHelper.createBean(BeanHelper.java:492)
    at org.apache.commons.configuration2.builder.BasicConfigurationBuilder.createResultInstance(BasicConfigurationBuilder.java:447)
    at org.apache.commons.configuration2.builder.BasicConfigurationBuilder.createResult(BasicConfigurationBuilder.java:417)
    at org.apache.commons.configuration2.builder.BasicConfigurationBuilder.getConfiguration(BasicConfigurationBuilder.java:285)
    at main.Main.main(Main.java:25)

I found this link regarding this warning message.

like image 180
D.B. Avatar answered Sep 19 '22 03:09

D.B.


In Apache Commons Configuration, there is PropertiesConfiguration. It supports the feature of converting delimited string to array/list.

For example, if you have a properties file

#Foo.properties
foo=bar1, bar2, bar3

With the below code:

PropertiesConfiguration config = new PropertiesConfiguration("Foo.properties");
String[] values = config.getStringArray("foo");

will give you a string array of ["bar1", "bar2", "bar3"]


getString only returns the first value for a multi-value key. Try getStringArray to get both values.

Full Code Example:

ApacheCommonPropertyConfig.java

import java.util.List;

import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.PropertiesConfiguration;

public class ApacheCommonPropertyConfig {

    public static void main(String[] args) throws ConfigurationException {
        PropertiesConfiguration config;
        try {
            config = new PropertiesConfiguration("F://foo.properties");
            // For Array
            String[] values = config.getStringArray("foo");
            for(String strVal : values) {
                System.out.println("Array Value is: "+strVal);
            }
            // For List
            List<Object> linclude =  config.getList("foo");
            for(Object str : linclude){
                System.out.println("List Value is: "+str.toString());
            }
            // For List Another
            List<Object> list = config.getList("listOfValue", config.getList("foo"));
            for(Object str : list){
                System.out.println("Another List Value is: "+str.toString());
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

foo.properties

foo=bar1, bar2, bar3

Output:

Array Value is: bar1
Array Value is: bar2
Array Value is: bar3
List Value is: bar1
List Value is: bar2
List Value is: bar3
Another List Value is: bar1
Another List Value is: bar2
Another List Value is: bar3


Another example using AbstractFileConfiguration

ListDelimiterDemo.java

import org.apache.commons.configuration.AbstractFileConfiguration;
import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.PropertiesConfiguration;


public class ListDelimiterDemo {

    public static void main(String[] args) throws ConfigurationException {
        AbstractFileConfiguration config = new PropertiesConfiguration();
        config.setListDelimiter(',');
        config.load("F://foo.properties");

        for (Object listItem : config.getList("foo")) {
            System.out.println(listItem);
        }
    }
}

Output:

bar1
bar2
bar3

Resource Link:

  1. Reading a List from properties file and load with spring annotation @Value
  2. Class PropertiesConfiguration
like image 21
SkyWalker Avatar answered Sep 19 '22 03:09

SkyWalker