Uses of Interface
org.springframework.web.reactive.function.BodyInserters.FormInserter
Packages that use BodyInserters.FormInserter
Package
Description
Provides a foundation for both the reactive client and server subpackages.
-
Uses of BodyInserters.FormInserter in org.springframework.web.reactive.function
Subinterfaces of BodyInserters.FormInserter in org.springframework.web.reactive.functionModifier and TypeInterfaceDescriptionstatic interfaceExtension ofBodyInserters.FormInserterthat allows for adding asynchronous parts.Methods in org.springframework.web.reactive.function that return BodyInserters.FormInserterModifier and TypeMethodDescriptionstatic BodyInserters.FormInserter<String>BodyInserters.fromFormData(String name, String value) Return aBodyInserters.FormInserterto write the given key-value pair as URL-encoded form data.static BodyInserters.FormInserter<String>BodyInserters.fromFormData(MultiValueMap<String, String> formData) Return aBodyInserters.FormInserterto write the givenMultiValueMapas URL-encoded form data.Adds the specified key-value pair to the form.BodyInserters.FormInserter.with(MultiValueMap<String, T> values) Adds the specified values to the form.