Class FixedContentTypeResolver

java.lang.Object
org.springframework.web.reactive.accept.FixedContentTypeResolver
All Implemented Interfaces:
RequestedContentTypeResolver

public class FixedContentTypeResolver extends Object implements 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
  • Constructor Details

    • FixedContentTypeResolver

      public FixedContentTypeResolver(MediaType mediaType)
      Constructor with a single default MediaType.
    • FixedContentTypeResolver

      public FixedContentTypeResolver(List<MediaType> contentTypes)
      Constructor with an ordered List of default MediaType's to return for use in applications that support a variety of content types.

      Consider appending MediaType.ALL at the end if destinations are present which do not support any of the other default media types.

  • Method Details