Uses of Class
org.springframework.http.HttpEntity
Packages that use HttpEntity
Package
Description
Contains a basic abstraction over client/server-side HTTP.
Contains an abstraction over client-side HTTP.
Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
Core package of the client-side web support.
-
Uses of HttpEntity in org.springframework.http
Subclasses of HttpEntity in org.springframework.httpModifier and TypeClassDescriptionclassExtension ofHttpEntitythat also exposes the HTTP method and the target URL.static classRequestEntity initialized with a URI template and variables instead of aURI.classExtension ofHttpEntitythat adds anHttpStatusCodestatus code.Fields in org.springframework.http declared as HttpEntityModifier and TypeFieldDescriptionstatic final HttpEntity<?>HttpEntity.EMPTYThe emptyHttpEntity, with no body or headers. -
Uses of HttpEntity in org.springframework.http.client
Methods in org.springframework.http.client that return types with arguments of type HttpEntityModifier and TypeMethodDescriptionMultipartBodyBuilder.build()Return aMultiValueMapwith the configured parts. -
Uses of HttpEntity in org.springframework.http.converter
Methods in org.springframework.http.converter that return HttpEntityModifier and TypeMethodDescriptionprotected HttpEntity<?>FormHttpMessageConverter.getHttpEntity(Object part) Return anHttpEntityfor the given part Object. -
Uses of HttpEntity in org.springframework.web.client
Methods in org.springframework.web.client with parameters of type HttpEntityModifier and TypeMethodDescription<T> ResponseEntity<T>RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Object... uriVariables) Execute the HTTP method to the given URI template, writing the given request entity to the request, and return the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Map<String, ?> uriVariables) Execute the HTTP method to the given URI template, writing the given request entity to the request, and return the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) Execute the HTTP method to the given URI template, writing the given request entity to the request, and return the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String, ?> uriVariables) Execute the HTTP method to the given URI template, writing the given request entity to the request, and return the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType) Execute the HTTP method to the given URI template, writing the given request entity to the request, and return the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) Execute the HTTP method to the given URI template, writing the given request entity to the request, and return the response asResponseEntity.<T> ResponseEntity<T>RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Object... uriVariables) <T> ResponseEntity<T>RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Map<String, ?> uriVariables) <T> ResponseEntity<T>RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) <T> ResponseEntity<T>RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String, ?> uriVariables) <T> ResponseEntity<T>RestTemplate.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType) <T> ResponseEntity<T>RestTemplate.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType)