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


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