Interface ClientCodecConfigurer
- All Superinterfaces:
- CodecConfigurer
- All Known Implementing Classes:
- DefaultClientCodecConfigurer
Extension of 
CodecConfigurer for HTTP message reader and writer
options relevant on the client side.
HTTP message readers for the following are registered by default:
- ByteBuffer
- DataBuffer
- Resource
- String
- MultiValueMap<String,String>for form data
- JSON and Smile, if Jackson is present
- XML, if JAXB2 is present
- Server-Sent Events
byte[]
HTTP message writers registered by default:
- ByteBuffer
- DataBuffer
- Resource
- String
- MultiValueMap<String,String>for form data
- MultiValueMap<String,Object>for multipart data
- JSON and Smile, if Jackson is present
- XML, if JAXB2 is present
byte[]
- Since:
- 5.0
- Author:
- Rossen Stoyanchev
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic interfaceCodecConfigurer.DefaultCodecsextension with extra client-side options.Nested classes/interfaces inherited from interface CodecConfigurerCodecConfigurer.CustomCodecs, CodecConfigurer.DefaultCodecConfig, CodecConfigurer.DefaultCodecs, CodecConfigurer.MultipartCodecs
- 
Method SummaryModifier and TypeMethodDescriptionclone()Create a copy of thisCodecConfigurer.static ClientCodecConfigurercreate()Static factory method for aClientCodecConfigurer.Provides a way to customize or replace HTTP message readers and writers registered by default.Methods inherited from interface CodecConfigurercustomCodecs, getReaders, getWriters, registerDefaults
- 
Method Details- 
defaultCodecsClientCodecConfigurer.ClientDefaultCodecs defaultCodecs()Provides a way to customize or replace HTTP message readers and writers registered by default.On the client side, built-in default also include customizations related to multipart readers and writers, as well as the decoder for SSE. - Specified by:
- defaultCodecsin interface- CodecConfigurer
- See Also:
 
- 
cloneClientCodecConfigurer clone()Create a copy of thisCodecConfigurer. The returned clone has its own lists of default and custom codecs and generally can be configured independently. Keep in mind however that codec instances (if any are configured) are themselves not cloned.- Specified by:
- clonein interface- CodecConfigurer
 
- 
createStatic factory method for aClientCodecConfigurer.
 
-