Uses of Class
org.springframework.http.converter.AbstractHttpMessageConverter
Packages that use AbstractHttpMessageConverter Package Description org.springframework.http.converter Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.org.springframework.http.converter.cbor Provides an HttpMessageConverter for the CBOR data format.org.springframework.http.converter.feed Provides HttpMessageConverter implementations for handling Atom and RSS feeds.org.springframework.http.converter.json Provides HttpMessageConverter implementations for handling JSON.org.springframework.http.converter.protobuf Provides an HttpMessageConverter implementation for handling Google Protocol Buffers.org.springframework.http.converter.smile Provides an HttpMessageConverter for the Smile data format ("binary JSON").org.springframework.http.converter.xml Provides HttpMessageConverter implementations for handling XML.Uses of AbstractHttpMessageConverter in org.springframework.http.converter
Subclasses of AbstractHttpMessageConverter in org.springframework.http.converter Modifier and Type Class Description classAbstractGenericHttpMessageConverter<T>Abstract base class for mostGenericHttpMessageConverterimplementations.classByteArrayHttpMessageConverterImplementation ofHttpMessageConverterthat can read and write byte arrays.classObjectToStringHttpMessageConverterAnHttpMessageConverterthat usesStringHttpMessageConverterfor reading and writing content and aConversionServicefor converting the String content to and from the target object type.classResourceHttpMessageConverterImplementation ofHttpMessageConverterthat can read/writeResourcesand supports byte range requests.classResourceRegionHttpMessageConverterImplementation ofHttpMessageConverterthat can write a singleResourceRegion, or Collections ofResourceRegions.classStringHttpMessageConverterImplementation ofHttpMessageConverterthat can read and write strings.Uses of AbstractHttpMessageConverter in org.springframework.http.converter.cbor
Subclasses of AbstractHttpMessageConverter in org.springframework.http.converter.cbor Modifier and Type Class Description classMappingJackson2CborHttpMessageConverterImplementation ofHttpMessageConverterthat can read and write the CBOR data format using the dedicated Jackson 2.x extension.Uses of AbstractHttpMessageConverter in org.springframework.http.converter.feed
Subclasses of AbstractHttpMessageConverter in org.springframework.http.converter.feed Modifier and Type Class Description classAbstractWireFeedHttpMessageConverter<T extends com.rometools.rome.feed.WireFeed>Abstract base class for Atom and RSS Feed message converters, using the ROME tools project.classAtomFeedHttpMessageConverterImplementation ofHttpMessageConverterthat can read and write Atom feeds.classRssChannelHttpMessageConverterImplementation ofHttpMessageConverterthat can read and write RSS feeds.Uses of AbstractHttpMessageConverter in org.springframework.http.converter.json
Subclasses of AbstractHttpMessageConverter in org.springframework.http.converter.json Modifier and Type Class Description classAbstractJackson2HttpMessageConverterAbstract base class for Jackson based and content type independentHttpMessageConverterimplementations.classAbstractJsonHttpMessageConverterCommon base class for plain JSON converters, e.g.classGsonHttpMessageConverterImplementation ofHttpMessageConverterthat can read and write JSON using the Google Gson library.classJsonbHttpMessageConverterImplementation ofHttpMessageConverterthat can read and write JSON using the JSON Binding API.classMappingJackson2HttpMessageConverterImplementation ofHttpMessageConverterthat can read and write JSON using Jackson 2.x'sObjectMapper.Uses of AbstractHttpMessageConverter in org.springframework.http.converter.protobuf
Subclasses of AbstractHttpMessageConverter in org.springframework.http.converter.protobuf Modifier and Type Class Description classProtobufHttpMessageConverterAnHttpMessageConverterthat reads and writescom.google.protobuf.Messagesusing Google Protocol Buffers.classProtobufJsonFormatHttpMessageConverterSubclass ofProtobufHttpMessageConverterwhich 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
Subclasses of AbstractHttpMessageConverter in org.springframework.http.converter.smile Modifier and Type Class Description classMappingJackson2SmileHttpMessageConverterImplementation ofHttpMessageConverterthat 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