RequestedContentTypeResolver
strategy and implementations to resolve the requested content type for a
given request.See: Description
| Interface | Description |
|---|---|
| MappingContentTypeResolver |
An extension of
RequestedContentTypeResolver that maintains a mapping
between keys (e.g. |
| RequestedContentTypeResolver |
Strategy for resolving the requested media types for a
ServerWebExchange. |
| Class | Description |
|---|---|
| AbstractMappingContentTypeResolver |
Abstract base class for
MappingContentTypeResolver implementations. |
| CompositeContentTypeResolver |
A
RequestedContentTypeResolver that contains and delegates to a list of other
resolvers. |
| FixedContentTypeResolver |
A
RequestedContentTypeResolver that resolves to a fixed list of media types. |
| HeaderContentTypeResolver |
A
RequestedContentTypeResolver that checks the 'Accept' request header. |
| ParameterContentTypeResolver |
A
RequestedContentTypeResolver that extracts the media type lookup
key from a known query parameter named "format" by default. |
| PathExtensionContentTypeResolver |
A
RequestedContentTypeResolver that extracts the file extension from
the request path and uses that as the media type lookup key. |
| RequestedContentTypeResolverBuilder |
Factory to create a
CompositeContentTypeResolver and configure it with
one or more RequestedContentTypeResolver instances with build style
methods. |
RequestedContentTypeResolver
strategy and implementations to resolve the requested content type for a
given request.