Class KotlinSerializationJsonDecoder
java.lang.Object
org.springframework.http.codec.KotlinSerializationSupport<T>
org.springframework.http.codec.KotlinSerializationStringDecoder<kotlinx.serialization.json.Json>
org.springframework.http.codec.json.KotlinSerializationJsonDecoder
public class KotlinSerializationJsonDecoder
extends KotlinSerializationStringDecoder<kotlinx.serialization.json.Json>
Decode a byte stream into JSON and convert to Object's with
 kotlinx.serialization.
 
This decoder can be used to bind @Serializable Kotlin classes,
 open polymorphic serialization
 is not supported.
 It supports application/json and application/*+json with
 various character sets, UTF-8 being the default.
 
Decoding streams is not supported yet, see kotlinx.serialization/issues/1073 related issue.
- Since:
- 5.3
- Author:
- Sebastien Deleuze, Iain Henderson
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class org.springframework.http.codec.KotlinSerializationStringDecodercanDecode, decode, decodeToMono, getDecodableMimeTypes, getDecodableMimeTypes, getMaxInMemorySize, setMaxInMemorySizeMethods inherited from class org.springframework.http.codec.KotlinSerializationSupportcanSerialize, format, serializer, supportedMimeTypes
- 
Constructor Details- 
KotlinSerializationJsonDecoderpublic KotlinSerializationJsonDecoder()
- 
KotlinSerializationJsonDecoderpublic KotlinSerializationJsonDecoder(kotlinx.serialization.json.Json json) 
 
-