open class WebExchangeDataBinder : WebDataBinder
Specialized org.springframework.validation.DataBinder to perform data binding from URL query params or form data in the request data to Java objects.
Author
Rossen Stoyanchev
Since
5.0
WebExchangeDataBinder(target: Any)
Create a new instance, with default object name. WebExchangeDataBinder(target: Any, objectName: String)
Create a new instance. |
open fun bind(exchange: ServerWebExchange): Mono<Void>
Bind query params, form data, and or multipart form data to the binder target. |
|
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 |