Uses of Interface
org.springframework.web.client.RestClient.RequestBodySpec
Packages that use RestClient.RequestBodySpec
-
Uses of RestClient.RequestBodySpec in org.springframework.web.client
Subinterfaces of RestClient.RequestBodySpec in org.springframework.web.clientModifier and TypeInterfaceDescriptionstatic interface
Contract for specifying request headers, body and URI for a request.Methods in org.springframework.web.client that return RestClient.RequestBodySpecModifier and TypeMethodDescriptionSet the body of the request to the givenObject
.RestClient.RequestBodySpec.body
(StreamingHttpOutputMessage.Body body) Set the body of the request to the given function that writes to anOutputStream
.RestClient.RequestBodySpec.body
(T body, ParameterizedTypeReference<T> bodyType) Set the body of the request to the givenObject
.RestClient.RequestBodySpec.contentLength
(long contentLength) Set the length of the body in bytes, as specified by theContent-Length
header.RestClient.RequestBodySpec.contentType
(MediaType contentType) Set the media type of the body, as specified by theContent-Type
header.