open class FormHttpMessageReader : HttpMessageReader<MultiValueMap<String, String>>
Implementation of an HttpMessageReader to read HTML form data, i.e. request body with media type "application/x-www-form-urlencoded".
Author
Sebastien Deleuze
Author
Rossen Stoyanchev
Since
5.0
FormHttpMessageReader()
Implementation of an HttpMessageReader to read HTML form data, i.e. request body with media type |
static val DEFAULT_CHARSET: Charset |
open fun canRead(elementType: ResolvableType, mediaType: MediaType): Boolean |
|
open fun getDefaultCharset(): Charset
Return the configured default charset. |
|
open fun getReadableMediaTypes(): MutableList<MediaType> |
|
open fun read(elementType: ResolvableType, message: ReactiveHttpInputMessage, hints: MutableMap<String, Any>): Flux<MultiValueMap<String, String>> |
|
open fun readMono(elementType: ResolvableType, message: ReactiveHttpInputMessage, hints: MutableMap<String, Any>): Mono<MultiValueMap<String, String>> |
|
open fun setDefaultCharset(charset: Charset): Unit
Set the default character set to use for reading form data when the request Content-Type header does not explicitly specify it. By default this is set to "UTF-8". |