| Class Summary |
| AbstractUrlMethodNameResolver | Abstract base class for URL-based MethodNameResolver implementations. |
| InternalPathMethodNameResolver | Simple implementation of MethodNameResolver that maps URL to method
name. |
| MethodNameResolver | Interface that parameterizes the MultiActionController class
using the Strategy GoF Design pattern, allowing
the mapping from incoming request to handler method name
to be varied without affecting other application code. |
| MultiActionController | Controller implementation that allows multiple request types to be
handled by the same class. |
| NoSuchRequestHandlingMethodException | Exception thrown when there's no request handling method for
this request. |
| ParameterMethodNameResolver | Simple implementation of MethodNameResolver that looks for a
parameter value containing the name of the method to invoke. |
| PropertiesMethodNameResolver | The most sophisticated and useful framework implementation of
the MethodNameResolver interface. |