You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Lukasz Lenart (JIRA)" <ji...@apache.org> on 2017/01/02 07:59:58 UTC

[jira] [Commented] (WW-4050) AnnotationValidationInterceptor should consult UnknownHandler before throwing NoSuchMethodException

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

Lukasz Lenart commented on WW-4050:
-----------------------------------

It isn't possible to use {{UnknownHandler}} here as it will try to execute method which can have a side effects. Instead, I've converted {{NoSuchMethodException}} into {{ConfigurationException}} which then is handled by {{Dispatcher}} and effects in {{404}}

> AnnotationValidationInterceptor should consult UnknownHandler before throwing NoSuchMethodException
> ---------------------------------------------------------------------------------------------------
>
>                 Key: WW-4050
>                 URL: https://issues.apache.org/jira/browse/WW-4050
>             Project: Struts 2
>          Issue Type: Improvement
>    Affects Versions: 2.3.14
>            Reporter: Azuo Lee
>             Fix For: 2.5.next
>
>
> If a {{NoSuchMethodException}} is caught when invoking {{getActionMethod()}}, {{AnnotationValidationInterceptor}} should first give any configured {{UnknownHandler}} a shot, before throwing the exception directly, just as what {{DefaultActionInvocation.invokeAction()}} does.
> Any unknown {{Action}} or unknown {{Result}} is currently handled by {{Dispatcher.serviceAction()}}, and a *404* error code will be returned as expected. But an unknown {{Method}} will raise a *500* error, the only way to avoid this is to configure an {{UnknownHandler}}. Therefore, {{AnnotationValidationInterceptor}} won't inspect {{UnknownHandler}} at all...
> {{GET /foo/list&nbsp;&nbsp;*404* (Action "foo" not found)}}
> {{GET /bar/list&nbsp;&nbsp;*200*}}
> {{GET /bar/print&nbsp;*500* (Method "print" not found, *404* is expected instead of *500*)}}



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