spring-framework / org.springframework.web.bind.support / WebExchangeDataBinder / extractValuesToBind

extractValuesToBind

open static fun extractValuesToBind(exchange: ServerWebExchange): Mono<MutableMap<String, Any>>

Combine query params and form data for multipart form data from the body of the request into a Map<String, Object> of values to use for data binding purposes.

Parameters

exchange - the current exchange

Return
a Mono with the values to bind

See Also
org.springframework.http.server.reactive.ServerHttpRequest#getQueryParams()ServerWebExchange#getFormData()ServerWebExchange#getMultipartData()