org.apache.struts2.dispatcher
Class ServletActionRedirectResult

java.lang.Object
  extended by org.apache.struts2.dispatcher.StrutsResultSupport
      extended by org.apache.struts2.dispatcher.ServletRedirectResult
          extended by org.apache.struts2.dispatcher.ServletActionRedirectResult
All Implemented Interfaces:
Result, ReflectionExceptionHandler, Serializable, StrutsStatics

public class ServletActionRedirectResult
extends ServletRedirectResult
implements ReflectionExceptionHandler

This result uses the ActionMapper provided by the ActionMapperFactory to redirect the browser to a URL that invokes the specified action and (optional) namespace. This is better than the ServletRedirectResult because it does not require you to encode the URL patterns processed by the ActionMapper in to your struts.xml configuration files. This means you can change your URL patterns at any point and your application will still work. It is strongly recommended that if you are redirecting to another action, you use this result rather than the standard redirect result. See examples below for an example of how request parameters could be passed in. This result type takes the following parameters:

Example:

 <package name="public" extends="struts-default">
     <action name="login" class="...">
         <!-- Redirect to another namespace -->
         <result type="redirectAction">
             <param name="actionName">dashboard</param>
             <param name="namespace">/secure</param>
         </result>
     </action>
 </package>

 <package name="secure" extends="struts-default" namespace="/secure">
     <-- Redirect to an action in the same namespace -->
     <action name="dashboard" class="...">
         <result>dashboard.jsp</result>
         <result name="error" type="redirectAction">error</result>
     </action>

     <action name="error" class="...">
         <result>error.jsp</result>
     </action>
 </package>

 <package name="passingRequestParameters" extends="struts-default" namespace="/passingRequestParameters">
    <-- Pass parameters (reportType, width and height) -->
    <!--
    The redirectAction url generated will be :
    /genReport/generateReport.action?reportType=pie&width=100&height=100
    -->
    <action name="gatherReportInfo" class="...">
       <result name="showReportResult" type="redirectAction">
          <param name="actionName">generateReport</param>
          <param name="namespace">/genReport</param>
          <param name="reportType">pie</param>
          <param name="width">100</param>
          <param name="height">100</param>
          <param name="empty"></param>
          <param name="supressEmptyParameters">true</param>
       </result>
    </action>
 </package>


 

See Also:
ActionMapper, Serialized Form

Field Summary
protected  String actionName
           
static String DEFAULT_PARAM
          The default parameter
private static Logger LOG
           
protected  String method
           
protected  String namespace
           
protected  List<String> prohibitedResultParam
           
private  Map<String,String> requestParameters
           
private static long serialVersionUID
           
protected  boolean supressEmptyParameters
           
 
Fields inherited from class org.apache.struts2.dispatcher.ServletRedirectResult
actionMapper, prependServletContext, statusCode
 
Fields inherited from interface org.apache.struts2.StrutsStatics
HTTP_REQUEST, HTTP_RESPONSE, PAGE_CONTEXT, SERVLET_CONTEXT, SERVLET_DISPATCHER, STRUTS_PORTLET_CONTEXT
 
Constructor Summary
ServletActionRedirectResult()
           
ServletActionRedirectResult(String actionName)
           
ServletActionRedirectResult(String actionName, String method)
           
ServletActionRedirectResult(String namespace, String actionName, String method)
           
 
Method Summary
 ServletActionRedirectResult addParameter(String key, Object value)
          Adds a request parameter to be added to the redirect url
 void execute(ActionInvocation invocation)
          Implementation of the execute method from the Result interface.
 void handle(ReflectionException ex)
           
 void setActionName(String actionName)
          Sets the action name
 void setMethod(String method)
          Sets the method
 void setNamespace(String namespace)
          Sets the namespace
 void setSupressEmptyParameters(boolean supressEmptyParameters)
          Sets the supressEmptyParameters option
 
Methods inherited from class org.apache.struts2.dispatcher.ServletRedirectResult
doExecute, sendRedirect, setActionMapper, setPrependServletContext, setStatusCode
 
Methods inherited from class org.apache.struts2.dispatcher.StrutsResultSupport
conditionalParse, getLastFinalLocation, getLocation, setEncode, setLocation, setParse
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

DEFAULT_PARAM

public static final String DEFAULT_PARAM
The default parameter

See Also:
Constant Field Values

LOG

private static final Logger LOG

actionName

protected String actionName

namespace

protected String namespace

method

protected String method

supressEmptyParameters

protected boolean supressEmptyParameters

requestParameters

private Map<String,String> requestParameters

prohibitedResultParam

protected List<String> prohibitedResultParam
Constructor Detail

ServletActionRedirectResult

public ServletActionRedirectResult()

ServletActionRedirectResult

public ServletActionRedirectResult(String actionName)

ServletActionRedirectResult

public ServletActionRedirectResult(String actionName,
                                   String method)

ServletActionRedirectResult

public ServletActionRedirectResult(String namespace,
                                   String actionName,
                                   String method)
Method Detail

execute

public void execute(ActionInvocation invocation)
             throws Exception
Description copied from class: StrutsResultSupport
Implementation of the execute method from the Result interface. This will call the abstract method StrutsResultSupport.doExecute(String, ActionInvocation) after optionally evaluating the location as an OGNL evaluation.

Specified by:
execute in interface Result
Overrides:
execute in class StrutsResultSupport
Parameters:
invocation - the execution state of the action.
Throws:
Exception - if an error occurs while executing the result.
See Also:
Result.execute(com.opensymphony.xwork2.ActionInvocation)

setActionName

public void setActionName(String actionName)
Sets the action name

Parameters:
actionName - The name

setNamespace

public void setNamespace(String namespace)
Sets the namespace

Parameters:
namespace - The namespace

setMethod

public void setMethod(String method)
Sets the method

Parameters:
method - The method

setSupressEmptyParameters

public void setSupressEmptyParameters(boolean supressEmptyParameters)
Sets the supressEmptyParameters option

Parameters:
suppress - The new value for this option

addParameter

public ServletActionRedirectResult addParameter(String key,
                                                Object value)
Adds a request parameter to be added to the redirect url

Parameters:
key - The parameter name
value - The parameter value

handle

public void handle(ReflectionException ex)
Specified by:
handle in interface ReflectionExceptionHandler


Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.