org.apache.struts2.dispatcher.mapper
Class Restful2ActionMapper

java.lang.Object
  extended by org.apache.struts2.dispatcher.mapper.DefaultActionMapper
      extended by org.apache.struts2.dispatcher.mapper.Restful2ActionMapper
All Implemented Interfaces:
ActionMapper

public class Restful2ActionMapper
extends DefaultActionMapper

Improved restful action mapper that adds several ReST-style improvements to action mapping, but supports fully-customized URL's via XML. The two primary ReST enhancements are:

These two improvements allow a GET request for 'category/action/movie/Thrillers' to be mapped to the action name 'movie' with an id of 'Thrillers' with an extra parameter named 'category' with a value of 'action'. A single action mapping can then handle all CRUD operations using wildcards, e.g.

   <action name="movie/*" className="app.MovieAction">
     <param name="id">{0}</param>
     ...
   </action>
 

This mapper supports the following parameters:

The following URL's will invoke its methods:

To simulate the HTTP methods PUT and DELETE, since they aren't supported by HTML, the HTTP parameter "__http_method" will be used.

The syntax and design for this feature was inspired by the ReST support in Ruby on Rails. See http://ryandaigle.com/articles/2006/08/01/whats-new-in-edge-rails-simply-restful-support-and-how-to-use-it


Field Summary
static String HTTP_METHOD_PARAM
           
protected static Logger LOG
           
 
Fields inherited from class org.apache.struts2.dispatcher.mapper.DefaultActionMapper
ACTION_PREFIX, allowDynamicMethodCalls, allowSlashesInActionNames, alwaysSelectFullNamespace, container, extensions, METHOD_PREFIX, prefixTrie, REDIRECT_ACTION_PREFIX, REDIRECT_PREFIX
 
Constructor Summary
Restful2ActionMapper()
           
 
Method Summary
 String getIdParameterName()
           
 ActionMapping getMapping(javax.servlet.http.HttpServletRequest request, ConfigurationManager configManager)
          Expose the ActionMapping for the current request
protected  boolean isDelete(javax.servlet.http.HttpServletRequest request)
           
protected  boolean isGet(javax.servlet.http.HttpServletRequest request)
           
protected  boolean isPost(javax.servlet.http.HttpServletRequest request)
           
protected  boolean isPut(javax.servlet.http.HttpServletRequest request)
           
 void setIdParameterName(String idParameterName)
           
 
Methods inherited from class org.apache.struts2.dispatcher.mapper.DefaultActionMapper
addParameterAction, dropExtension, dropExtension, getDefaultExtension, getMappingFromActionName, getUri, getUriFromActionMapping, handleSpecialParameters, isSlashesInActionNames, parseActionName, parseNameAndNamespace, setAllowDynamicMethodCalls, setAlwaysSelectFullNamespace, setContainer, setExtensions, setSlashesInActionNames
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

LOG

protected static final Logger LOG

HTTP_METHOD_PARAM

public static final String HTTP_METHOD_PARAM
See Also:
Constant Field Values
Constructor Detail

Restful2ActionMapper

public Restful2ActionMapper()
Method Detail

getMapping

public ActionMapping getMapping(javax.servlet.http.HttpServletRequest request,
                                ConfigurationManager configManager)
Description copied from interface: ActionMapper
Expose the ActionMapping for the current request

Specified by:
getMapping in interface ActionMapper
Overrides:
getMapping in class DefaultActionMapper
Parameters:
request - The servlet request
configManager - The current configuration manager
Returns:
The appropriate action mapping

isGet

protected boolean isGet(javax.servlet.http.HttpServletRequest request)

isPost

protected boolean isPost(javax.servlet.http.HttpServletRequest request)

isPut

protected boolean isPut(javax.servlet.http.HttpServletRequest request)

isDelete

protected boolean isDelete(javax.servlet.http.HttpServletRequest request)

getIdParameterName

public String getIdParameterName()

setIdParameterName

public void setIdParameterName(String idParameterName)


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