See: Description
Interface | Description |
---|---|
AsyncHandlerMethodReturnValueHandler |
A return value handler that supports async types.
|
HandlerMethodArgumentResolver |
Strategy interface for resolving method parameters into argument values in
the context of a given request.
|
HandlerMethodReturnValueHandler |
Strategy interface to handle the value returned from the invocation of a
handler method .
|
UriComponentsContributor |
Strategy for contributing to the building of a
UriComponents by
looking at a method parameter and an argument value and deciding what
part of the target URL should be updated. |
Class | Description |
---|---|
CompositeUriComponentsContributor |
A
UriComponentsContributor containing a list of other contributors
to delegate to and also encapsulating a specific ConversionService to
use for formatting method argument values as Strings. |
HandlerMethodArgumentResolverComposite |
Resolves method parameters by delegating to a list of registered
HandlerMethodArgumentResolvers . |
HandlerMethodReturnValueHandlerComposite |
Handles method return values by delegating to a list of registered
HandlerMethodReturnValueHandlers . |
InvocableHandlerMethod |
Extension of
HandlerMethod that invokes the underlying method with
argument values resolved from the current HTTP request through a list of
HandlerMethodArgumentResolver . |
ModelAndViewContainer |
Records model and view related decisions made by
HandlerMethodArgumentResolvers and
HandlerMethodReturnValueHandlers during the course of invocation of
a controller method. |