Package | Description |
---|---|
org.springframework.web.reactive.function |
Provides a foundation for both the reactive client and server subpackages.
|
Modifier and Type | Interface and Description |
---|---|
static interface |
BodyInserters.MultipartInserter
Extension of
BodyInserters.FormInserter that allows for adding asynchronous parts. |
Modifier and Type | Method and Description |
---|---|
static BodyInserters.FormInserter<String> |
BodyInserters.fromFormData(MultiValueMap<String,String> formData)
Return a
BodyInserters.FormInserter to write the given MultiValueMap
as URL-encoded form data. |
static BodyInserters.FormInserter<String> |
BodyInserters.fromFormData(String name,
String value)
Return a
BodyInserters.FormInserter to write the given key-value pair as
URL-encoded form data. |
BodyInserters.FormInserter<T> |
BodyInserters.FormInserter.with(MultiValueMap<String,T> values)
Adds the specified values to the form.
|
BodyInserters.FormInserter<T> |
BodyInserters.FormInserter.with(String key,
T value)
Adds the specified key-value pair to the form.
|