You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Aleksandr Mashchenko (JIRA)" <ji...@apache.org> on 2016/01/18 20:21:39 UTC

[jira] [Updated] (WW-4590) Allow to use multiple names in result

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

Aleksandr Mashchenko updated WW-4590:
-------------------------------------
    Description: 
Allow to use multiple values in {{result}} tag {{name}} attribute and in {{Result}} annotation {{name}}.

So this typical configuration:

{code:xml}
<action name="save">
    <result>success.jsp</result>
    <result name="error">input-form.jsp</result>
    <result name="input">input-form.jsp</result>
</action>
{code}

Can be shorten to that:

{code:xml}
<action name="save">
    <result>success.jsp</result>
    <result name="error, input">input-form.jsp</result>
</action>
{code}

And this annotations:

{code:java}
@Action(results = {
    @Result(name="error", location="input-form.jsp"),
    @Result(name="input", location="input-form.jsp"),
    @Result(name="success", location="success.jsp")
})
{code}

To that:

{code:java}
@Action(results = {
    @Result(name="error, input", location="input-form.jsp"),
    @Result(name="success", location="success.jsp")
})
{code}

  was:
Allow to use multiple values in {{result}} tag {{name}} attribute and in {{Result}} annotation {{name}}.

This typical configuration:

{code}
<action name="save">
    <result>success.jsp</result>
    <result name="error">input-form.jsp</result>
    <result name="input">input-form.jsp</result>
</action>
{code}

Can be shorten to this:

{code}
<action name="save">
    <result>success.jsp</result>
    <result name="error, input">input-form.jsp</result>
</action>
{code}


> Allow to use multiple names in result
> -------------------------------------
>
>                 Key: WW-4590
>                 URL: https://issues.apache.org/jira/browse/WW-4590
>             Project: Struts 2
>          Issue Type: Improvement
>          Components: Plugin - Convention, XML Configuration
>    Affects Versions: 2.3.24
>            Reporter: Aleksandr Mashchenko
>            Assignee: Aleksandr Mashchenko
>             Fix For: 2.5
>
>
> Allow to use multiple values in {{result}} tag {{name}} attribute and in {{Result}} annotation {{name}}.
> So this typical configuration:
> {code:xml}
> <action name="save">
>     <result>success.jsp</result>
>     <result name="error">input-form.jsp</result>
>     <result name="input">input-form.jsp</result>
> </action>
> {code}
> Can be shorten to that:
> {code:xml}
> <action name="save">
>     <result>success.jsp</result>
>     <result name="error, input">input-form.jsp</result>
> </action>
> {code}
> And this annotations:
> {code:java}
> @Action(results = {
>     @Result(name="error", location="input-form.jsp"),
>     @Result(name="input", location="input-form.jsp"),
>     @Result(name="success", location="success.jsp")
> })
> {code}
> To that:
> {code:java}
> @Action(results = {
>     @Result(name="error, input", location="input-form.jsp"),
>     @Result(name="success", location="success.jsp")
> })
> {code}



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