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

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

    Attachment: patch.txt

Here is a patch that I think fixes the problem.

There is a loop in getPropertyDescriptor that resolves nested references to get 
to the "innnermost" bean. I have included this in each of the 
getPropertyType/isReadable/isWriteable methods (duplicated I'm afraid).

Is this right? It seems to work and does not break the tests.


> 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, patch.txt
>
>
> 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.

Reply via email to