Return-Path: Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: (qmail 24618 invoked from network); 2 Feb 2011 00:24:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Feb 2011 00:24:53 -0000 Received: (qmail 94364 invoked by uid 500); 2 Feb 2011 00:24:52 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 94247 invoked by uid 500); 2 Feb 2011 00:24:52 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 94239 invoked by uid 99); 2 Feb 2011 00:24:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Feb 2011 00:24:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Feb 2011 00:24:49 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id EF49E188A45 for ; Wed, 2 Feb 2011 00:24:28 +0000 (UTC) Date: Wed, 2 Feb 2011 00:24:28 +0000 (UTC) From: "Mike Power (JIRA)" To: issues@commons.apache.org Message-ID: <1444457312.4147.1296606268976.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] Created: (CONFIGURATION-432) ConfugrationConverter treats properties different by type MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org ConfugrationConverter treats properties different by type --------------------------------------------------------- Key: CONFIGURATION-432 URL: https://issues.apache.org/jira/browse/CONFIGURATION-432 Project: Commons Configuration Issue Type: Bug Components: Type conversion Affects Versions: 1.6 Environment: Linux Ubuntu Reporter: Mike Power The ConfigurationConverter is behaving differently depending on if I added an int or a string to a configuration object. Consider the following code: 01 Configuration confInt = new BaseConfiguration(); 02 Configuration confString = new BaseConfiguration(); 03 confInt.setProperty("port", 80); 04 confString.setProperty("port", "80"); 05 assertEquals(80, confInt.getInt("port")); 06 assertEquals(80, confString.getInt("port")); 07 08 Properties propString = ConfigurationConverter.getProperties(confString); 09 assertEquals("80", propString.getProperty("port")); 10 11 Properties propInt = ConfigurationConverter.getProperties(confInt); 12 13 assertEquals("80", propInt.getProperty("port")); As you can see the code is basically duplicated one set uses an int the other set uses a String. However an exception blows out of line 11. 'port' doesn't map to a List object: 80, a java.lang.Integer org.apache.commons.configuration.ConversionException: 'port' doesn't map to a List object: 80, a java.lang.Integer at org.apache.commons.configuration.AbstractConfiguration.getList(AbstractConfiguration.java:1144) at org.apache.commons.configuration.AbstractConfiguration.getList(AbstractConfiguration.java:1109) at org.apache.commons.configuration.ConfigurationConverter.getProperties(ConfigurationConverter.java:116) I interpreted the interface to mean that everything up to and include line 13 would pass. -- This message is automatically generated by JIRA. - For more information on JIRA, see: http://www.atlassian.com/software/jira