Uses of Interface
org.springframework.http.converter.HttpMessageConverter
Packages that use HttpMessageConverter
Package
Description
Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
Provides an HttpMessageConverter for the CBOR data format.
Provides HttpMessageConverter implementations for handling Atom and RSS feeds.
Provides HttpMessageConverter implementations for handling JSON.
Provides an HttpMessageConverter implementation for handling
Google Protocol Buffers.
Provides an HttpMessageConverter for the Smile data format ("binary JSON").
Provides a comprehensive HttpMessageConverter variant for form handling.
Provides HttpMessageConverter implementations for handling XML.
Provides an
HttpMessageConverter for the YAML data format.Test support for HTTP concepts.
AssertJ support for MockMvc.
Support for testing Spring MVC applications via
RestTestClient with
MockMvc for server request handling.Contains built-in
MockMvcBuilder implementations.Core package of the client-side web support.
Annotation-based setup for Spring MVC.
Provides the types that make up Spring's functional web framework for Servlet environments.
Classes supporting the
org.springframework.web.servlet.function package.MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package.-
Uses of HttpMessageConverter in org.springframework.http.converter
Subinterfaces of HttpMessageConverter in org.springframework.http.converterModifier and TypeInterfaceDescriptioninterfaceA specialization ofHttpMessageConverterthat can convert an HTTP request into a target object of a specified generic type and a source object of a specified generic type into an HTTP response.interfaceA specialization ofHttpMessageConverterthat can convert an HTTP request into a target object of a specifiedResolvableTypeand a source object of a specifiedResolvableTypeinto an HTTP response with optional hints.Classes in org.springframework.http.converter that implement HttpMessageConverterModifier and TypeClassDescriptionclassAbstract base class for mostGenericHttpMessageConverterimplementations.classAbstract base class for mostHttpMessageConverterimplementations.classAbstractJacksonHttpMessageConverter<T extends tools.jackson.databind.ObjectMapper>Abstract base class for Jackson based and content type independentHttpMessageConverterimplementations.classAbstractKotlinSerializationHttpMessageConverter<T extends kotlinx.serialization.SerialFormat>Abstract base class forHttpMessageConverterimplementations that use Kotlin serialization.classAbstract base class for mostSmartHttpMessageConverterimplementations.classImplementation ofHttpMessageConverterthat can read and writeBufferedImages.classImplementation ofHttpMessageConverterthat can read and write byte arrays.classImplementation ofHttpMessageConverterto read and write 'normal' HTML forms and also to write (but not read) multipart data (for example, file uploads).classKotlinSerializationBinaryHttpMessageConverter<T extends kotlinx.serialization.BinaryFormat>Abstract base class forHttpMessageConverterimplementations that defer to Kotlin binary serializers.classKotlinSerializationStringHttpMessageConverter<T extends kotlinx.serialization.StringFormat>Abstract base class forHttpMessageConverterimplementations that defer to Kotlin string serializers.classAnHttpMessageConverterthat usesStringHttpMessageConverterfor reading and writing content and aConversionServicefor converting the String content to and from the target object type.classImplementation ofHttpMessageConverterthat can read/writeResourcesand supports byte range requests.classImplementation ofHttpMessageConverterthat can write a singleResourceRegionor Collections ofResourceRegions.classImplementation ofHttpMessageConverterthat can read and write strings.Subinterfaces with type arguments of type HttpMessageConverter in org.springframework.http.converterModifier and TypeInterfaceDescriptioninterfaceUtility for building and configuring an immutable collection ofHttpMessageConverterinstances forclientorserverusage.Methods in org.springframework.http.converter that return types with arguments of type HttpMessageConverterModifier and TypeMethodDescriptionFormHttpMessageConverter.getPartConverters()Return the configured converters for MIME parts.Methods in org.springframework.http.converter with parameters of type HttpMessageConverterModifier and TypeMethodDescriptionvoidFormHttpMessageConverter.addPartConverter(HttpMessageConverter<?> partConverter) Add a message body converter.HttpMessageConverters.Builder.cborMessageConverter(HttpMessageConverter<?> cborMessageConverter) Override the default Jackson 3.x CBORHttpMessageConverterwith any converter supporting the CBOR format.HttpMessageConverters.Builder.customMessageConverter(HttpMessageConverter<?> customConverter) Add a customHttpMessageConverterto the list of converters.HttpMessageConverters.Builder.jsonMessageConverter(HttpMessageConverter<?> jsonMessageConverter) Override the default Jackson 3.x JSONHttpMessageConverterwith any converter supporting the JSON format.HttpMessageConverters.Builder.smileMessageConverter(HttpMessageConverter<?> smileMessageConverter) Override the default Jackson 3.x SmileHttpMessageConverterwith any converter supporting the Smile format.HttpMessageConverters.Builder.stringMessageConverter(HttpMessageConverter<?> stringMessageConverter) Override the default StringHttpMessageConverterwith any converter supporting String conversion.HttpMessageConverters.Builder.xmlMessageConverter(HttpMessageConverter<?> xmlMessageConverter) Override the default Jackson 3.x XMLHttpMessageConverterwith any converter supporting the XML format.HttpMessageConverters.Builder.yamlMessageConverter(HttpMessageConverter<?> yamlMessageConverter) Override the default Jackson 3.x YamlHttpMessageConverterwith any converter supporting the Yaml format.Method parameters in org.springframework.http.converter with type arguments of type HttpMessageConverterModifier and TypeMethodDescriptionHttpMessageConverters.Builder.configureMessageConverters(Consumer<HttpMessageConverter<?>> configurer) Add a consumer for configuring the selected message converters.voidFormHttpMessageConverter.setPartConverters(List<HttpMessageConverter<?>> partConverters) Set the message body converters to use. -
Uses of HttpMessageConverter in org.springframework.http.converter.cbor
Classes in org.springframework.http.converter.cbor that implement HttpMessageConverterModifier and TypeClassDescriptionclassImplementation ofHttpMessageConverterthat can read and write the CBOR data format using the dedicated Jackson 3.x extension.classImplementation ofHttpMessageConverterthat can read and write CBOR using kotlinx.serialization.classDeprecated, for removal: This API element is subject to removal in a future version. -
Uses of HttpMessageConverter in org.springframework.http.converter.feed
Classes in org.springframework.http.converter.feed that implement HttpMessageConverterModifier and TypeClassDescriptionclassAbstractWireFeedHttpMessageConverter<T extends com.rometools.rome.feed.WireFeed>Abstract base class for Atom and RSS Feed message converters, using the ROME tools project.classImplementation ofHttpMessageConverterthat can read and write Atom feeds.classImplementation ofHttpMessageConverterthat can read and write RSS feeds. -
Uses of HttpMessageConverter in org.springframework.http.converter.json
Classes in org.springframework.http.converter.json that implement HttpMessageConverterModifier and TypeClassDescriptionclassDeprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor ofAbstractJacksonHttpMessageConverterclassCommon base class for plain JSON converters, for example, Gson and JSON-B.classImplementation ofHttpMessageConverterthat can read and write JSON using the Google Gson library.classclassImplementation ofHttpMessageConverterthat can read and write JSON using the JSON Binding API.classImplementation ofHttpMessageConverterthat can read and write JSON using kotlinx.serialization.classDeprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor ofJacksonJsonHttpMessageConverter -
Uses of HttpMessageConverter in org.springframework.http.converter.protobuf
Classes in org.springframework.http.converter.protobuf that implement HttpMessageConverterModifier and TypeClassDescriptionclassImplementation ofHttpMessageConverterthat can read and write Protocol Buffers using kotlinx.serialization.classAnHttpMessageConverterthat reads and writescom.google.protobuf.Messagesusing Google Protocol Buffers.classSubclass ofProtobufHttpMessageConverterwhich enforces the use of Protobuf 3 and its official library"com.google.protobuf:protobuf-java-util"for JSON processing. -
Uses of HttpMessageConverter in org.springframework.http.converter.smile
Classes in org.springframework.http.converter.smile that implement HttpMessageConverterModifier and TypeClassDescriptionclassImplementation ofHttpMessageConverterthat can read and write Smile data format ("binary JSON") using the dedicated Jackson 3.x extension.classDeprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor ofJacksonSmileHttpMessageConverter -
Uses of HttpMessageConverter in org.springframework.http.converter.support
Classes in org.springframework.http.converter.support that implement HttpMessageConverterModifier and TypeClassDescriptionclassExtension ofFormHttpMessageConverter, adding support for XML, JSON, Smile, CBOR, Protobuf and Yaml based parts when related libraries are present in the classpath.Constructor parameters in org.springframework.http.converter.support with type arguments of type HttpMessageConverterModifierConstructorDescriptionAllEncompassingFormHttpMessageConverter(Iterable<HttpMessageConverter<?>> converters) Create a newAllEncompassingFormHttpMessageConverterinstance using the given message converters. -
Uses of HttpMessageConverter in org.springframework.http.converter.xml
Classes in org.springframework.http.converter.xml that implement HttpMessageConverterModifier and TypeClassDescriptionclassAbstract base class forHttpMessageConvertersthat use JAXB2.classAbstract base class forHttpMessageConvertersthat convert from/to XML.classImplementation ofHttpMessageConverterthat can read and write XML using Jackson 3.x extension component for reading and writing XML encoded data.classJaxb2CollectionHttpMessageConverter<T extends Collection>AnHttpMessageConverterthat can read XML collections using JAXB2.classImplementation ofHttpMessageConverterthat can read and write XML using JAXB2.classDeprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor ofJacksonXmlHttpMessageConverterclassImplementation ofHttpMessageConverterthat can read and write XML using Spring'sMarshallerandUnmarshallerabstractions.classSourceHttpMessageConverter<T extends Source>Implementation ofHttpMessageConverterthat can read and writeSourceobjects. -
Uses of HttpMessageConverter in org.springframework.http.converter.yaml
Classes in org.springframework.http.converter.yaml that implement HttpMessageConverterModifier and TypeClassDescriptionclassImplementation ofHttpMessageConverterthat can read and write the YAML data format using the dedicated Jackson 3.x extension.classDeprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor ofJacksonYamlHttpMessageConverter -
Uses of HttpMessageConverter in org.springframework.test.http
Methods in org.springframework.test.http with parameters of type HttpMessageConverterModifier and TypeMethodDescriptionstatic HttpMessageContentConverterHttpMessageContentConverter.of(HttpMessageConverter<?>... candidates) Create an instance with a vararg of the candidates to use.Method parameters in org.springframework.test.http with type arguments of type HttpMessageConverterModifier and TypeMethodDescriptionstatic HttpMessageContentConverterHttpMessageContentConverter.of(Iterable<HttpMessageConverter<?>> candidates) Create an instance with an iterable of the candidates to use. -
Uses of HttpMessageConverter in org.springframework.test.web.servlet.assertj
Method parameters in org.springframework.test.web.servlet.assertj with type arguments of type HttpMessageConverterModifier and TypeMethodDescriptionMockMvcTester.withHttpMessageConverters(Iterable<HttpMessageConverter<?>> httpMessageConverters) Return a new instance using the specified message converters. -
Uses of HttpMessageConverter in org.springframework.test.web.servlet.client
Methods in org.springframework.test.web.servlet.client with parameters of type HttpMessageConverterModifier and TypeMethodDescriptionMockMvcWebTestClient.ControllerSpec.messageConverters(HttpMessageConverter<?>... messageConverters) Set the message converters to use.MockMvcWebTestClient.RouterFunctionSpec.messageConverters(HttpMessageConverter<?>... messageConverters) Set the message converters to use. -
Uses of HttpMessageConverter in org.springframework.test.web.servlet.setup
Methods in org.springframework.test.web.servlet.setup with parameters of type HttpMessageConverterModifier and TypeMethodDescriptionRouterFunctionMockMvcBuilder.setMessageConverters(HttpMessageConverter<?>... messageConverters) Set the message converters to use in argument resolvers and in return value handlers, which support reading and/or writing to the body of the request and response.StandaloneMockMvcBuilder.setMessageConverters(HttpMessageConverter<?>... messageConverters) Set the message converters to use in argument resolvers and in return value handlers, which support reading and/or writing to the body of the request and response. -
Uses of HttpMessageConverter in org.springframework.web.client
Methods in org.springframework.web.client that return types with arguments of type HttpMessageConverterModifier and TypeMethodDescriptionRestTemplate.getMessageConverters()Return the list of message body converters.Method parameters in org.springframework.web.client with type arguments of type HttpMessageConverterModifier and TypeMethodDescriptionRestClient.Builder.messageConverters(Iterable<HttpMessageConverter<?>> messageConverters) Deprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor ofRestClient.Builder.configureMessageConverters(Consumer)RestClient.Builder.messageConverters(Consumer<List<HttpMessageConverter<?>>> configurer) Deprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor ofRestClient.Builder.configureMessageConverters(Consumer)voidExtractingResponseErrorHandler.setMessageConverters(List<HttpMessageConverter<?>> messageConverters) Set the message converters to use by this extractor.voidRestTemplate.setMessageConverters(List<HttpMessageConverter<?>> messageConverters) Set the message body converters to use.Constructor parameters in org.springframework.web.client with type arguments of type HttpMessageConverterModifierConstructorDescriptionExtractingResponseErrorHandler(List<HttpMessageConverter<?>> messageConverters) Create a newExtractingResponseErrorHandlerwith the givenHttpMessageConverterinstances.HttpMessageConverterExtractor(Class<T> responseType, List<HttpMessageConverter<?>> messageConverters) Create a new instance of theHttpMessageConverterExtractorwith the given response type and message converters.HttpMessageConverterExtractor(Type responseType, List<HttpMessageConverter<?>> messageConverters) Creates a new instance of theHttpMessageConverterExtractorwith the given response type and message converters.RestTemplate(Iterable<HttpMessageConverter<?>> messageConverters) Create a new instance with the given message converters. -
Uses of HttpMessageConverter in org.springframework.web.servlet.config.annotation
Methods in org.springframework.web.servlet.config.annotation that return types with arguments of type HttpMessageConverterModifier and TypeMethodDescriptionprotected final List<HttpMessageConverter<?>> WebMvcConfigurationSupport.getMessageConverters()Provides access to the sharedHttpMessageConvertersused by theRequestMappingHandlerAdapterand theExceptionHandlerExceptionResolver.Method parameters in org.springframework.web.servlet.config.annotation with type arguments of type HttpMessageConverterModifier and TypeMethodDescriptionprotected final voidWebMvcConfigurationSupport.addDefaultHttpMessageConverters(List<HttpMessageConverter<?>> messageConverters) Deprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor ofWebMvcConfigurationSupport.createMessageConverters()protected voidDelegatingWebMvcConfiguration.configureMessageConverters(List<HttpMessageConverter<?>> converters) Deprecated, for removal: This API element is subject to removal in a future version.protected voidWebMvcConfigurationSupport.configureMessageConverters(List<HttpMessageConverter<?>> converters) Deprecated, for removal: This API element is subject to removal in a future version.default voidWebMvcConfigurer.configureMessageConverters(List<HttpMessageConverter<?>> converters) Deprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor of configuring converters onWebMvcConfigurer.configureMessageConverters(HttpMessageConverters.ServerBuilder)protected voidDelegatingWebMvcConfiguration.extendMessageConverters(List<HttpMessageConverter<?>> converters) Deprecated, for removal: This API element is subject to removal in a future version.protected voidWebMvcConfigurationSupport.extendMessageConverters(List<HttpMessageConverter<?>> converters) Deprecated, for removal: This API element is subject to removal in a future version.default voidWebMvcConfigurer.extendMessageConverters(List<HttpMessageConverter<?>> converters) Deprecated, for removal: This API element is subject to removal in a future version.since 7.0 in favor of configuring converters onWebMvcConfigurer.configureMessageConverters(HttpMessageConverters.ServerBuilder) -
Uses of HttpMessageConverter in org.springframework.web.servlet.function
Methods in org.springframework.web.servlet.function that return types with arguments of type HttpMessageConverterModifier and TypeMethodDescriptionServerRequest.messageConverters()Get the readers used to convert the body of this request.ServerResponse.Context.messageConverters()Return theHttpMessageConvertersto be used for response body conversion.Method parameters in org.springframework.web.servlet.function with type arguments of type HttpMessageConverterModifier and TypeMethodDescriptionstatic ServerRequestServerRequest.create(jakarta.servlet.http.HttpServletRequest servletRequest, List<HttpMessageConverter<?>> messageReaders) Create a newServerRequestbased on the givenHttpServletRequestand message converters.static ServerRequestServerRequest.create(jakarta.servlet.http.HttpServletRequest servletRequest, List<HttpMessageConverter<?>> messageReaders, @Nullable ApiVersionStrategy versionStrategy) Create a newServerRequestbased on the givenHttpServletRequestand message converters. -
Uses of HttpMessageConverter in org.springframework.web.servlet.function.support
Method parameters in org.springframework.web.servlet.function.support with type arguments of type HttpMessageConverterModifier and TypeMethodDescriptionvoidRouterFunctionMapping.setMessageConverters(List<HttpMessageConverter<?>> messageConverters) Set the message body converters to use. -
Uses of HttpMessageConverter in org.springframework.web.servlet.mvc.method.annotation
Fields in org.springframework.web.servlet.mvc.method.annotation with type parameters of type HttpMessageConverterModifier and TypeFieldDescriptionprotected final List<HttpMessageConverter<?>> AbstractMessageConverterMethodArgumentResolver.messageConvertersMethods in org.springframework.web.servlet.mvc.method.annotation that return types with arguments of type HttpMessageConverterModifier and TypeMethodDescriptionExceptionHandlerExceptionResolver.getMessageConverters()Return the configured message body converters.RequestMappingHandlerAdapter.getMessageConverters()Return the configured message body converters.Method parameters in org.springframework.web.servlet.mvc.method.annotation with type arguments of type HttpMessageConverterModifier and TypeMethodDescriptionRequestBodyAdvice.afterBodyRead(Object body, HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType) Invoked third (and last) after the request body is converted to an Object.RequestBodyAdviceAdapter.afterBodyRead(Object body, HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType) The default implementation returns the body that was passed in.JsonViewRequestBodyAdvice.beforeBodyRead(HttpInputMessage inputMessage, MethodParameter methodParameter, Type targetType, Class<? extends HttpMessageConverter<?>> selectedConverterType) RequestBodyAdvice.beforeBodyRead(HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType) Invoked second before the request body is read and converted.RequestBodyAdviceAdapter.beforeBodyRead(HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType) The default implementation returns the InputMessage that was passed in.AbstractMappingJacksonResponseBodyAdvice.beforeBodyWrite(@Nullable Object body, MethodParameter returnType, MediaType contentType, Class<? extends HttpMessageConverter<?>> converterType, ServerHttpRequest request, ServerHttpResponse response) KotlinResponseBodyAdvice.beforeBodyWrite(@Nullable Object body, MethodParameter returnType, MediaType selectedContentType, Class<? extends HttpMessageConverter<?>> selectedConverterType, ServerHttpRequest request, ServerHttpResponse response) ResponseBodyAdvice.beforeBodyWrite(@Nullable T body, MethodParameter returnType, MediaType selectedContentType, Class<? extends HttpMessageConverter<?>> selectedConverterType, ServerHttpRequest request, ServerHttpResponse response) Invoked after anHttpMessageConverteris selected and just before its write method is invoked.JsonViewResponseBodyAdvice.determineWriteHints(@Nullable Object body, MethodParameter returnType, MediaType selectedContentType, Class<? extends HttpMessageConverter<?>> selectedConverterType) KotlinResponseBodyAdvice.determineWriteHints(@Nullable Object body, MethodParameter returnType, MediaType selectedContentType, Class<? extends HttpMessageConverter<?>> selectedConverterType) ResponseBodyAdvice.determineWriteHints(@Nullable T body, MethodParameter returnType, MediaType selectedContentType, Class<? extends HttpMessageConverter<?>> selectedConverterType) Invoked to determine write hints if the converter is aSmartHttpMessageConverter.RequestBodyAdvice.handleEmptyBody(@Nullable Object body, HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType) Invoked second (and last) if the body is empty.RequestBodyAdviceAdapter.handleEmptyBody(@Nullable Object body, HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType) The default implementation returns the body that was passed in.voidExceptionHandlerExceptionResolver.setMessageConverters(List<HttpMessageConverter<?>> messageConverters) Set the message body converters to use.voidRequestMappingHandlerAdapter.setMessageConverters(List<HttpMessageConverter<?>> messageConverters) Provide the converters to use in argument resolvers and return value handlers that support reading and/or writing to the body of the request and response.booleanAbstractMappingJacksonResponseBodyAdvice.supports(MethodParameter returnType, Class<? extends HttpMessageConverter<?>> converterType) booleanJsonViewRequestBodyAdvice.supports(MethodParameter methodParameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType) booleanJsonViewResponseBodyAdvice.supports(MethodParameter returnType, Class<? extends HttpMessageConverter<?>> converterType) booleanKotlinRequestBodyAdvice.supports(MethodParameter methodParameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType) booleanKotlinResponseBodyAdvice.supports(MethodParameter returnType, Class<? extends HttpMessageConverter<?>> converterType) booleanRequestBodyAdvice.supports(MethodParameter methodParameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType) Invoked first to determine if this interceptor applies.booleanResponseBodyAdvice.supports(MethodParameter returnType, Class<? extends HttpMessageConverter<?>> converterType) Whether this component supports the given controller method return type and the selectedHttpMessageConvertertype.Constructor parameters in org.springframework.web.servlet.mvc.method.annotation with type arguments of type HttpMessageConverterModifierConstructorDescriptionAbstractMessageConverterMethodArgumentResolver(List<HttpMessageConverter<?>> converters) Basic constructor with converters only.AbstractMessageConverterMethodArgumentResolver(List<HttpMessageConverter<?>> converters, @Nullable List<Object> requestResponseBodyAdvice) Constructor with converters andRequest~andResponseBodyAdvice.protectedAbstractMessageConverterMethodProcessor(List<HttpMessageConverter<?>> converters) Construct with the provided list of converters only.protectedAbstractMessageConverterMethodProcessor(List<HttpMessageConverter<?>> converters, @Nullable ContentNegotiationManager contentNegotiationManager) Construct with the provided list of converters andContentNegotiationManager.protectedAbstractMessageConverterMethodProcessor(List<HttpMessageConverter<?>> converters, @Nullable ContentNegotiationManager manager, @Nullable List<Object> requestResponseBodyAdvice) Variant ofAbstractMessageConverterMethodProcessor(List, ContentNegotiationManager)with an additionalrequestResponseBodyAdvicelist for return value handling.protectedAbstractMessageConverterMethodProcessor(List<HttpMessageConverter<?>> converters, @Nullable ContentNegotiationManager manager, @Nullable List<Object> requestResponseBodyAdvice, List<ErrorResponse.Interceptor> interceptors) Variant ofAbstractMessageConverterMethodProcessor(List, ContentNegotiationManager, List)with additional list ofErrorResponse.Interceptors for return value handling.HttpEntityMethodProcessor(List<HttpMessageConverter<?>> converters) Basic constructor with converters only.HttpEntityMethodProcessor(List<HttpMessageConverter<?>> converters, List<Object> requestResponseBodyAdvice) Complete constructor for resolvingHttpEntitymethod arguments.HttpEntityMethodProcessor(List<HttpMessageConverter<?>> converters, @Nullable ContentNegotiationManager manager, List<Object> requestResponseBodyAdvice) Variant ofHttpEntityMethodProcessor(List, List)with an additionalContentNegotiationManagerargument for return value handling.HttpEntityMethodProcessor(List<HttpMessageConverter<?>> converters, @Nullable ContentNegotiationManager manager, List<Object> requestResponseBodyAdvice, List<ErrorResponse.Interceptor> interceptors) Variant ofHttpEntityMethodProcessor(List, ContentNegotiationManager, List)with additional list ofErrorResponse.Interceptors for return value handling.HttpEntityMethodProcessor(List<HttpMessageConverter<?>> converters, ContentNegotiationManager manager) Basic constructor with converters andContentNegotiationManager.RequestPartMethodArgumentResolver(List<HttpMessageConverter<?>> messageConverters) Basic constructor with converters only.RequestPartMethodArgumentResolver(List<HttpMessageConverter<?>> messageConverters, List<Object> requestResponseBodyAdvice) Constructor with converters andRequestBodyAdviceandResponseBodyAdvice.RequestResponseBodyMethodProcessor(List<HttpMessageConverter<?>> converters) Basic constructor with converters only.RequestResponseBodyMethodProcessor(List<HttpMessageConverter<?>> converters, @Nullable List<Object> requestResponseBodyAdvice) Complete constructor for resolving@RequestBodymethod arguments.RequestResponseBodyMethodProcessor(List<HttpMessageConverter<?>> converters, @Nullable ContentNegotiationManager manager) Basic constructor with converters andContentNegotiationManager.RequestResponseBodyMethodProcessor(List<HttpMessageConverter<?>> converters, @Nullable ContentNegotiationManager manager, @Nullable List<Object> requestResponseBodyAdvice) Variant ofRequestResponseBodyMethodProcessor(List, List)with an additionalContentNegotiationManagerargument, for return value handling.RequestResponseBodyMethodProcessor(List<HttpMessageConverter<?>> converters, @Nullable ContentNegotiationManager manager, List<Object> requestResponseBodyAdvice, List<ErrorResponse.Interceptor> interceptors) Variant ofRequestResponseBodyMethodProcessor(List, ContentNegotiationManager, List)with an additionalErrorResponse.Interceptorargument for return value handling.ResponseBodyEmitterReturnValueHandler(List<HttpMessageConverter<?>> messageConverters) Simple constructor with reactive type support based on a default instance ofReactiveAdapterRegistry,SyncTaskExecutor, andContentNegotiationManagerwith an Accept header strategy.ResponseBodyEmitterReturnValueHandler(List<HttpMessageConverter<?>> messageConverters, ReactiveAdapterRegistry registry, TaskExecutor executor, ContentNegotiationManager manager) Constructor that with added arguments to customize "reactive" type support.ResponseBodyEmitterReturnValueHandler(List<HttpMessageConverter<?>> messageConverters, ReactiveAdapterRegistry registry, TaskExecutor executor, ContentNegotiationManager manager, List<ViewResolver> viewResolvers, @Nullable LocaleResolver localeResolver) Constructor that with added arguments for view rendering.
JacksonCborHttpMessageConverter