jackson
Registers the application/json content type to the ContentNegotiation plugin using Jackson.
You can learn more from the corresponding client and server documentation.
Parameters
the content type to send with a request
if set to true, will stream request/response body, without keeping it whole in memory. This will set Transfer-Encoding: chunked header.
a configuration block for JsonMapper.Builder
Deprecated
Use jackson(contentType, streamBody, block) instead
Replace with
jackson(contentType, streamBody = streamRequestBody, block)Registers the application/json content type to the ContentNegotiation plugin using Jackson.
You can learn more from the corresponding client and server documentation.
Parameters
the content type to send with a request
if set to true, will stream request body, without keeping it whole in memory. This will set Transfer-Encoding: chunked header.
a configuration block for JsonMapper.Builder