Re: [configuration] is common-configuration affected by COLLECTIONS-580

2015-11-17 Thread Benedikt Ritter
Hello Joel, 2015-11-17 18:01 GMT+01:00 Joël Traber : > Hi guys, > > I am running an application working with commons-configuration version 1.6 > I just noticed a bug in commons-collection.( >

[configuration] is common-configuration affected by COLLECTIONS-580

2015-11-17 Thread Joël Traber
Hi guys, I am running an application working with commons-configuration version 1.6 I just noticed a bug in

Re: Commons Lang substitution

2015-11-17 Thread Jörg Schaible
Alex Soto wrote: > Hi, thank you for your answers, Jörg I think that StrMatcher is for > implementing where you want to get information to be replaced on the > string, not for parsing issues. Instead of guessing, I'd rather have a look into the Javadocs of StrSubstitutor. Cheers, Jörg

Re: [dbutils] Issue when using more than 1 parameter in query

2015-11-17 Thread Amol Kulkarni
We tested this code with standalone app.The stmt.getParameterMetaData() in QueryRunner.java is throwing error. We asked DBA , but he does not see any query in logs coming. He is the debug. We add QueryRunner.java in classpath so that we can debug / put some sys outs. query coming here is SELECT

Re: Commons Lang substitution

2015-11-17 Thread Alex Soto
Hi, thank you for your answers, Jörg I think that StrMatcher is for implementing where you want to get information to be replaced on the string, not for parsing issues. El dl., 16 nov. 2015 a les 21:38, Jörg Schaible () va escriure: > Benedikt Ritter wrote: > > > Hello, >

Re: Commons Lang substitution

2015-11-17 Thread Woonsan Ko
I think Jörg is right. You may change the suffix StrMather through #setVariableSuffixMatcher() on a StrSubstitutor. I haven't tried it, but it should be something like this example: final Map valueMap = ...; StrSubstitutor subst = new StrSubstitutor(valuesMap, "$", ""); //