You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Gerry Matte (JIRA)" <ji...@apache.org> on 2016/08/01 02:00:26 UTC

[jira] [Commented] (CONFIGURATION-627) BeanHelper exception on XMLConfiguration builder.getConfiguration()

    [ https://issues.apache.org/jira/browse/CONFIGURATION-627?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15401437#comment-15401437 ] 

Gerry Matte commented on CONFIGURATION-627:
-------------------------------------------

I used to be a government worker before I retired.  We were often accused of "passing the buck" to someone else and then calling the job done.  I always resented that accusation and so I have to protest this JIRA being flagged as "Resolved".

This JIRA accurately describes a problem that prevents XMLConfiguration builder.getConfiguration() from executing.  Deciding that the problem is caused by an error in Bean Utils (JIRA BEANUTILS-477 which in turn passes the buck to BEANUTILS-492) does not resolve the original issue.

If you had even identified a work around for the problem there might be justification for flagging it as resolved.

IMHOP you should return this JIRA to status "Open" until a fix or a work-around is identified and the issue successfully passes testing.

> BeanHelper exception on XMLConfiguration builder.getConfiguration()
> -------------------------------------------------------------------
>
>                 Key: CONFIGURATION-627
>                 URL: https://issues.apache.org/jira/browse/CONFIGURATION-627
>             Project: Commons Configuration
>          Issue Type: Bug
>    Affects Versions: 2.0
>         Environment: JDK 1.8, Maven 3.3.9
>            Reporter: Martin
>            Priority: Minor
>
> Creating an *XMLConfiguration* from a file with a builder:
> {code:java}
> builder =
>         new FileBasedConfigurationBuilder<XMLConfiguration>(
>                 XMLConfiguration.class)
>                         .configure(params.xml()
>                                 .setFileName(
>                                         propsFile.getCanonicalPath())
>                                 .setValidating(false));
> config = builder.getConfiguration();
> {code}
> Causes a non-halting exception originating in *org.apache.commons.configuration2.beanutils.BeanHelper*, method 
> *private static boolean isPropertyWriteable(Object bean, String propName)* with parameters *XMLConfiguration*, *"validating"*.
> The exception:
> {noformat}
>     May 04, 2016 3:29:26 PM 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(PropertyDescriptor.java:657)
>         at java.beans.PropertyDescriptor.setWriteMethod(PropertyDescriptor.java:327)
>         at java.beans.PropertyDescriptor.<init>(PropertyDescriptor.java:139)
>         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)
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)