You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Lukasz Lenart (JIRA)" <ji...@apache.org> on 2016/04/21 11:54:25 UTC

[jira] [Resolved] (OGNL-250) OnglRuntime getMethodValue fails to find method matching propertyName

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

Lukasz Lenart resolved OGNL-250.
--------------------------------
    Resolution: Fixed

Resolved by merging
https://github.com/jkuhnert/ognl/pull/19

> OnglRuntime getMethodValue fails to find method matching propertyName
> ---------------------------------------------------------------------
>
>                 Key: OGNL-250
>                 URL: https://issues.apache.org/jira/browse/OGNL-250
>             Project: Commons OGNL
>          Issue Type: Bug
>          Components: Core Runtime
>            Reporter: Lon Varscsak
>             Fix For: 3.1.4
>
>         Attachments: test.tar.gz
>
>
> In OnglRuntime's getMethodValue method it attempts first to get the "get" method, if this fails, it trys to getReadMethod, which fails to find a method even though there is one matching the propertyName.
> I believe that:
> {code}
>         if ( method == null )
>         {
>             method = getReadMethod( targetClass, propertyName, 0 );
>         }
> {code}
> Should be:
> {code}
>         if ( method == null )
>         {
>             method = getReadMethod( targetClass, propertyName, -1);
>         }
> {code}
> Since the getReadMethod does not return any method if you pass in 0 (the check is < 0 or > 0)



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