Uses of Interface
org.springframework.web.client.RestClient.RequestBodySpec
Packages that use RestClient.RequestBodySpec
Package
Description
Core package of the client-side web support.
Classes supporting the
org.springframework.web.client package.-
Uses of RestClient.RequestBodySpec in org.springframework.web.client
Subinterfaces of RestClient.RequestBodySpec in org.springframework.web.clientModifier and TypeInterfaceDescriptionstatic interfaceContract for specifying request headers, body and URI for a request.Subinterfaces with type arguments of type RestClient.RequestBodySpec in org.springframework.web.clientModifier and TypeInterfaceDescriptionstatic interfaceContract for specifying request headers and body leading up to the exchange.static interfaceContract 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-Lengthheader.RestClient.RequestBodySpec.contentType(MediaType contentType) Set the media type of the body, as specified by theContent-Typeheader.Set the hint with the given name to the given value forSmartHttpMessageConverters supporting them. -
Uses of RestClient.RequestBodySpec in org.springframework.web.client.support
Methods in org.springframework.web.client.support that return RestClient.RequestBodySpecModifier and TypeMethodDescriptionRestClientAdapter.newRequest(HttpRequestValues values) Build a request from the givenHttpRequestValues.