Package org.springframework.http.codec
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 dataMultiValueMap<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 Summary
Modifier and TypeInterfaceDescriptionstatic interface
CodecConfigurer.DefaultCodecs
extension with extra client-side options.static interface
Registry and container for multipart HTTP message writers.Nested classes/interfaces inherited from interface org.springframework.http.codec.CodecConfigurer
CodecConfigurer.CustomCodecs, CodecConfigurer.DefaultCodecConfig, CodecConfigurer.DefaultCodecs
-
Method Summary
Modifier and TypeMethodDescriptionclone()
Create a copy of thisCodecConfigurer
.static ClientCodecConfigurer
create()
Static factory method for aClientCodecConfigurer
.Provides a way to customize or replace HTTP message readers and writers registered by default.Methods inherited from interface org.springframework.http.codec.CodecConfigurer
customCodecs, getReaders, getWriters, registerDefaults
-
Method Details
-
defaultCodecs
ClientCodecConfigurer.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:
defaultCodecs
in interfaceCodecConfigurer
- See Also:
-
clone
ClientCodecConfigurer 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:
clone
in interfaceCodecConfigurer
-
create
Static factory method for aClientCodecConfigurer
.
-