Uses of Class
org.springframework.http.converter.AbstractSmartHttpMessageConverter
Packages that use AbstractSmartHttpMessageConverter
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 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 AbstractSmartHttpMessageConverter in org.springframework.http.converter
Subclasses of AbstractSmartHttpMessageConverter in org.springframework.http.converterModifier and TypeClassDescriptionclass
Abstract base class for Jackson based and content type independentHttpMessageConverter
implementations.class
AbstractKotlinSerializationHttpMessageConverter<T extends kotlinx.serialization.SerialFormat>
Abstract base class forHttpMessageConverter
implementations that use Kotlin serialization.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. -
Uses of AbstractSmartHttpMessageConverter in org.springframework.http.converter.cbor
Subclasses of AbstractSmartHttpMessageConverter in org.springframework.http.converter.cborModifier and TypeClassDescriptionclass
Implementation ofHttpMessageConverter
that can read and write the CBOR data format using the dedicated Jackson 3.x extension.class
Implementation ofHttpMessageConverter
that can read and write CBOR using kotlinx.serialization. -
Uses of AbstractSmartHttpMessageConverter in org.springframework.http.converter.json
Subclasses of AbstractSmartHttpMessageConverter in org.springframework.http.converter.jsonModifier and TypeClassDescriptionclass
Implementation ofHttpMessageConverter
that can read and write JSON using Jackson 3.x'sObjectMapper
.class
Implementation ofHttpMessageConverter
that can read and write JSON using kotlinx.serialization. -
Uses of AbstractSmartHttpMessageConverter in org.springframework.http.converter.protobuf
Modifier and TypeClassDescriptionclass
Implementation ofHttpMessageConverter
that can read and write Protocol Buffers using kotlinx.serialization. -
Uses of AbstractSmartHttpMessageConverter 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 3.x extension. -
Uses of AbstractSmartHttpMessageConverter in org.springframework.http.converter.xml
Subclasses of AbstractSmartHttpMessageConverter in org.springframework.http.converter.xmlModifier and TypeClassDescriptionclass
Implementation ofHttpMessageConverter
that can read and write XML using Jackson 3.x extension component for reading and writing XML encoded data. -
Uses of AbstractSmartHttpMessageConverter in org.springframework.http.converter.yaml
Subclasses of AbstractSmartHttpMessageConverter in org.springframework.http.converter.yamlModifier and TypeClassDescriptionclass
Implementation ofHttpMessageConverter
that can read and write the YAML data format using the dedicated Jackson 3.x extension.