Return-Path: Delivered-To: apmail-commons-issues-archive@locus.apache.org Received: (qmail 68636 invoked from network); 5 Mar 2008 12:20:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Mar 2008 12:20:58 -0000 Received: (qmail 71246 invoked by uid 500); 5 Mar 2008 12:20:53 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 71182 invoked by uid 500); 5 Mar 2008 12:20:53 -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 71173 invoked by uid 99); 5 Mar 2008 12:20:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Mar 2008 04:20:53 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Mar 2008 12:20:14 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 5259F234C089 for ; Wed, 5 Mar 2008 04:19:43 -0800 (PST) Message-ID: <69011968.1204719583336.JavaMail.jira@brutus> Date: Wed, 5 Mar 2008 04:19:43 -0800 (PST) From: "Niall Pemberton (JIRA)" To: issues@commons.apache.org Subject: [jira] Commented: (BEANUTILS-309) Passing a null argument to ConstructorUtils.invokeConstructor causes NullPointerException In-Reply-To: <1087478013.1204717302775.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BEANUTILS-309?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12575319#action_12575319 ] Niall Pemberton commented on BEANUTILS-309: ------------------------------------------- btw there is also the following invokeConstructor() method: public static Object invokeConstructor(Class, Object[], Class[]) ..where you can specify the parameter types and avoid this issue. So in the example I gave above you would do the following to invoked the String constructor with a null argument: ConstructorUtils.invokeConstructor(Foo.class, new Object[] {null}, new Class[] {String.class}); > Passing a null argument to ConstructorUtils.invokeConstructor causes NullPointerException > ----------------------------------------------------------------------------------------- > > Key: BEANUTILS-309 > URL: https://issues.apache.org/jira/browse/BEANUTILS-309 > Project: Commons BeanUtils > Issue Type: Bug > Affects Versions: 1.7.0, 1.8.0-BETA > Reporter: Xavier Poinsard > > I am invoking ConstructorUtils.invokeConstructor with an array of arguments and one of these arguments is null. > This causes a NullPointerException line 120 in Class ConstructorUtils. > Since its not forbidden to pass null argument to a constructor, ConstructorUtils should handle it. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.