Interface BodyInserters.FormInserter<T>
- Type Parameters:
- T- the value type
- All Superinterfaces:
- BodyInserter<MultiValueMap<String,- T>, ClientHttpRequest> 
- All Known Subinterfaces:
- BodyInserters.MultipartInserter
- Enclosing class:
- BodyInserters
public static interface BodyInserters.FormInserter<T>
extends BodyInserter<MultiValueMap<String,T>, ClientHttpRequest> 
Extension of 
BodyInserter that allows for adding form data or
 multipart form data.- Since:
- 5.0
- Author:
- Arjen Poutsma, Rossen Stoyanchev, Sebastien Deleuze
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.springframework.web.reactive.function.BodyInserterBodyInserter.Context
- 
Method SummaryModifier and TypeMethodDescriptionAdds the specified key-value pair to the form.with(MultiValueMap<String, T> values) Adds the specified values to the form.Methods inherited from interface org.springframework.web.reactive.function.BodyInserterinsert
- 
Method Details- 
withAdds the specified key-value pair to the form.- Parameters:
- key- the key to be added
- value- the value to be added
- Returns:
- this inserter for adding more parts
 
- 
withAdds the specified values to the form.- Parameters:
- values- the values to be added
- Returns:
- this inserter for adding more parts
 
 
-