Uses of Class
org.springframework.http.converter.AbstractHttpMessageConverter
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 HttpMessageConverter implementations for handling XML.
Provides an
HttpMessageConverter
for the YAML data format.-
Uses of AbstractHttpMessageConverter in org.springframework.http.converter
Modifier and TypeClassDescriptionclass
Abstract base class for mostGenericHttpMessageConverter
implementations.class
AbstractKotlinSerializationHttpMessageConverter<T extends kotlinx.serialization.SerialFormat>
Abstract base class forHttpMessageConverter
implementations that use Kotlin serialization.class
Abstract base class for mostSmartHttpMessageConverter
implementations.class
Implementation ofHttpMessageConverter
that can read and write byte arrays.class
KotlinSerializationBinaryHttpMessageConverter<T extends kotlinx.serialization.BinaryFormat>
Abstract base class forHttpMessageConverter
implementations that defer to Kotlin binary serializers.class
KotlinSerializationStringHttpMessageConverter<T extends kotlinx.serialization.StringFormat>
Abstract base class forHttpMessageConverter
implementations that defer to Kotlin string serializers.class
AnHttpMessageConverter
that usesStringHttpMessageConverter
for reading and writing content and aConversionService
for converting the String content to and from the target object type.class
Implementation ofHttpMessageConverter
that can read/writeResources
and supports byte range requests.class
Implementation ofHttpMessageConverter
that can write a singleResourceRegion
or Collections ofResourceRegions
.class
Implementation ofHttpMessageConverter
that can read and write strings. -
Uses of AbstractHttpMessageConverter in org.springframework.http.converter.cbor
Modifier and TypeClassDescriptionclass
Implementation ofHttpMessageConverter
that can read and write CBOR using kotlinx.serialization.class
Implementation ofHttpMessageConverter
that can read and write the CBOR data format using the dedicated Jackson 2.x extension. -
Uses of AbstractHttpMessageConverter in org.springframework.http.converter.feed
Modifier and TypeClassDescriptionclass
AbstractWireFeedHttpMessageConverter<T extends com.rometools.rome.feed.WireFeed>
Abstract base class for Atom and RSS Feed message converters, using the ROME tools project.class
Implementation ofHttpMessageConverter
that can read and write Atom feeds.class
Implementation ofHttpMessageConverter
that can read and write RSS feeds. -
Uses of AbstractHttpMessageConverter in org.springframework.http.converter.json
Modifier and TypeClassDescriptionclass
Abstract base class for Jackson based and content type independentHttpMessageConverter
implementations.class
Common base class for plain JSON converters, for example, Gson and JSON-B.class
Implementation ofHttpMessageConverter
that can read and write JSON using the Google Gson library.class
Implementation ofHttpMessageConverter
that can read and write JSON using the JSON Binding API.class
Implementation ofHttpMessageConverter
that can read and write JSON using kotlinx.serialization.class
Implementation ofHttpMessageConverter
that can read and write JSON using Jackson 2.x'sObjectMapper
. -
Uses of AbstractHttpMessageConverter in org.springframework.http.converter.protobuf
Modifier and TypeClassDescriptionclass
Implementation ofHttpMessageConverter
that can read and write Protocol Buffers using kotlinx.serialization.class
AnHttpMessageConverter
that reads and writescom.google.protobuf.Messages
using Google Protocol Buffers.class
Subclass ofProtobufHttpMessageConverter
which enforces the use of Protobuf 3 and its official library"com.google.protobuf:protobuf-java-util"
for JSON processing. -
Uses of AbstractHttpMessageConverter in org.springframework.http.converter.smile
Modifier and TypeClassDescriptionclass
Implementation ofHttpMessageConverter
that can read and write Smile data format ("binary JSON") using the dedicated Jackson 2.x extension. -
Uses of AbstractHttpMessageConverter in org.springframework.http.converter.xml
Modifier and TypeClassDescriptionclass
Abstract base class forHttpMessageConverters
that use JAXB2.class
Abstract base class forHttpMessageConverters
that convert from/to XML.class
Jaxb2CollectionHttpMessageConverter<T extends Collection>
AnHttpMessageConverter
that can read XML collections using JAXB2.class
Implementation ofHttpMessageConverter
that can read and write XML using JAXB2.class
Implementation ofHttpMessageConverter
that can read and write XML using Jackson 2.x extension component for reading and writing XML encoded data.class
Implementation ofHttpMessageConverter
that can read and write XML using Spring'sMarshaller
andUnmarshaller
abstractions.class
SourceHttpMessageConverter<T extends Source>
Implementation ofHttpMessageConverter
that can read and writeSource
objects. -
Uses of AbstractHttpMessageConverter in org.springframework.http.converter.yaml
Modifier and TypeClassDescriptionclass
Implementation ofHttpMessageConverter
that can read and write the YAML data format using the dedicated Jackson 2.x extension.