类的使用
org.springframework.http.converter.AbstractHttpMessageConverter
使用AbstractHttpMessageConverter的程序包 程序包 说明 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.org.springframework.http.converter中AbstractHttpMessageConverter的使用
org.springframework.http.converter中AbstractHttpMessageConverter的子类 修饰符和类型 类 说明 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.org.springframework.http.converter.cbor中AbstractHttpMessageConverter的使用
org.springframework.http.converter.cbor中AbstractHttpMessageConverter的子类 修饰符和类型 类 说明 classMappingJackson2CborHttpMessageConverterImplementation ofHttpMessageConverterthat can read and write the CBOR data format using the dedicated Jackson 2.x extension.org.springframework.http.converter.feed中AbstractHttpMessageConverter的使用
org.springframework.http.converter.feed中AbstractHttpMessageConverter的子类 修饰符和类型 类 说明 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.org.springframework.http.converter.json中AbstractHttpMessageConverter的使用
org.springframework.http.converter.json中AbstractHttpMessageConverter的子类 修饰符和类型 类 说明 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.org.springframework.http.converter.protobuf中AbstractHttpMessageConverter的使用
org.springframework.http.converter.protobuf中AbstractHttpMessageConverter的子类 修饰符和类型 类 说明 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.org.springframework.http.converter.smile中AbstractHttpMessageConverter的使用
org.springframework.http.converter.smile中AbstractHttpMessageConverter的子类 修饰符和类型 类 说明 classMappingJackson2SmileHttpMessageConverterImplementation ofHttpMessageConverterthat can read and write Smile data format ("binary JSON") using the dedicated Jackson 2.x extension.org.springframework.http.converter.xml中AbstractHttpMessageConverter的使用