SerializationConverter
Creates a converter serializing with the specified binary format.
fun SerializationConverter(format: StringFormat, defaultCharset: Charset = Charsets.UTF_8)
Content copied to clipboard
Creates a converter serializing with the specified string format and defaultCharset (optional, usually it is UTF-8).
This is no longer supported. Instead, specify format explicitly or use the corresponding DSL function.
install(ContentNegotiation) {
json() // json with the default config
json(Json.strict) // strict json
register(..., SerializationConverter(Json(Json.nonstrict)) // more generic and longer way
}
Content copied to clipboard