org.apache.struts2.dispatcher.mapper |
|
Java Source File Name | Type | Comment |
ActionMapper.java | Interface |
Provide a mapping between HTTP requests and action invocation requests and vice-versa. |
ActionMapping.java | Class | Simple class that holds the action mapping information used to invoke a
Struts action. |
CompositeActionMapper.java | Class |
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. |
CompositeActionMapperTest.java | Class | |
DefaultActionMapper.java | Class |
Default action mapper implementation, using the standard *.[ext] (where ext
usually "action") pattern. |
DefaultActionMapperTest.java | Class | DefaultActionMapper test case. |
Restful2ActionMapper.java | Class |
Improved restful action mapper that adds several ReST-style improvements to
action mapping, but supports fully-customized URL's via XML. |
Restful2ActionMapperTest.java | Class | |
RestfulActionMapper.java | Class |
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. |
RestfulActionMapperTest.java | Class | Unit test for
RestfulActionMapper . |