|
Class Summary |
| ActionMapping |
Simple class that holds the action mapping information used to invoke a
Struts action. |
| CompositeActionMapper |
A composite action mapper that is capable of delegating to a series of ActionMapper if the former
failed to obtained a valid ActionMapping or uri. |
| DefaultActionMapper |
Default action mapper implementation, using the standard *.[ext] (where ext
usually "action") pattern. |
| PrefixBasedActionMapper |
A prefix based action mapper that is capable of delegating to other ActionMappers based on the request's prefix
It is configured through struts.xml
For example, with the following entries in struts.properties |
| Restful2ActionMapper |
Improved restful action mapper that adds several ReST-style improvements to
action mapping, but supports fully-customized URL's via XML. |
| RestfulActionMapper |
A custom action mapper using the following format:
http://HOST/ACTION_NAME/PARAM_NAME1/PARAM_VALUE1/PARAM_NAME2/PARAM_VALUE2
You can have as many parameters you'd like to use. |