You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Erik Erskine (JIRA)" <ji...@apache.org> on 2008/07/02 12:42:46 UTC

[jira] Updated: (BEANUTILS-319) PropertyUtils.getPropertyType fails for DynaBeans contained within a normal bean

     [ https://issues.apache.org/jira/browse/BEANUTILS-319?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Erik Erskine updated BEANUTILS-319:
-----------------------------------

    Attachment: InnerDynaBeanTestCase.java

Here is a test case to illustrate the problem

> PropertyUtils.getPropertyType fails for DynaBeans contained within a normal bean
> --------------------------------------------------------------------------------
>
>                 Key: BEANUTILS-319
>                 URL: https://issues.apache.org/jira/browse/BEANUTILS-319
>             Project: Commons BeanUtils
>          Issue Type: Bug
>          Components: Bean / Property Utils
>    Affects Versions: 1.8.0-BETA
>            Reporter: Erik Erskine
>         Attachments: InnerDynaBeanTestCase.java
>
>
> public class OuterBean {
>     private DynaBean inner;
>     public DynaBean getInner() {
>         return inner;
>     }
>     public void setInner(DynaBean inner) {
>         this.inner = inner;
>     }
> }
> I am unable to get the type of any of the DynaBean properties as nested properties of the outer bean. I can get them using the DynaBean directly, eg:
> PropertyUtils.getPropertyType(outer.getInner(), "foo")    <- returns correct type
> PropertyUtils.getPropertyType(outer, "inner.foo")            <- returns null

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.