Class FixedContentTypeResolver
java.lang.Object
org.springframework.web.reactive.accept.FixedContentTypeResolver
- All Implemented Interfaces:
RequestedContentTypeResolver
Resolver that always resolves to a fixed list of media types. This can be
used as the "last in line" strategy providing a fallback for when the client
has not requested any media types.
- Since:
- 5.0
- Author:
- Rossen Stoyanchev
-
Field Summary
Fields inherited from interface org.springframework.web.reactive.accept.RequestedContentTypeResolver
MEDIA_TYPE_ALL_LIST -
Constructor Summary
ConstructorsConstructorDescriptionFixedContentTypeResolver(List<MediaType> contentTypes) Constructor with an ordered List of defaultMediaType's to return for use in applications that support a variety of content types.FixedContentTypeResolver(MediaType mediaType) Constructor with a single defaultMediaType. -
Method Summary
Modifier and TypeMethodDescriptionReturn the configured list of media types.resolveMediaTypes(ServerWebExchange exchange) Resolve the given request to a list of requested media types.
-
Constructor Details
-
FixedContentTypeResolver
Constructor with a single defaultMediaType. -
FixedContentTypeResolver
Constructor with an ordered List of defaultMediaType's to return for use in applications that support a variety of content types.Consider appending
MediaType.ALLat the end if destinations are present which do not support any of the other default media types.
-
-
Method Details
-
getContentTypes
Return the configured list of media types. -
resolveMediaTypes
Description copied from interface:RequestedContentTypeResolverResolve the given request to a list of requested media types. The returned list is ordered by specificity first and by quality parameter second.- Specified by:
resolveMediaTypesin interfaceRequestedContentTypeResolver- Parameters:
exchange- the current exchange- Returns:
- the requested media types, or
RequestedContentTypeResolver.MEDIA_TYPE_ALL_LISTif none were requested.
-