See: Description
Interface | Description |
---|---|
HandlerMethodArgumentResolver |
Strategy to resolve the argument value for a method parameter in the context
of the current HTTP request.
|
RequestMappingInfo.Builder |
Defines a builder for creating a RequestMappingInfo.
|
SyncHandlerMethodArgumentResolver |
An extension of
HandlerMethodArgumentResolver for implementations
that are synchronous in nature and do not block to resolve values. |
Class | Description |
---|---|
AbstractHandlerMethodMapping<T> |
Abstract base class for
HandlerMapping implementations that define
a mapping between a request and a HandlerMethod . |
HandlerMethodArgumentResolverSupport |
Base class for
HandlerMethodArgumentResolver implementations with access to a
ReactiveAdapterRegistry and methods to check for method parameter support. |
InvocableHandlerMethod |
Extension of
HandlerMethod that invokes the underlying method with
argument values resolved from the current HTTP request through a list of
HandlerMethodArgumentResolver . |
RequestMappingInfo |
Encapsulates the following request mapping conditions:
PatternsRequestCondition
RequestMethodsRequestCondition
ParamsRequestCondition
HeadersRequestCondition
ConsumesRequestCondition
ProducesRequestCondition
RequestCondition (optional, custom request condition)
|
RequestMappingInfo.BuilderConfiguration |
Container for configuration options used for request mapping purposes.
|
RequestMappingInfoHandlerMapping |
Abstract base class for classes for which
RequestMappingInfo defines
the mapping between a request and a handler method. |
SyncInvocableHandlerMethod |
Extension of
HandlerMethod that invokes the underlying method via
InvocableHandlerMethod but uses sync argument resolvers only and
thus can return directly a HandlerResult with no async wrappers. |