Class HttpRequestValues
java.lang.Object
org.springframework.web.service.invoker.HttpRequestValues
- Direct Known Subclasses:
ReactiveHttpRequestValues
Container for HTTP request values extracted from an
@HttpExchange
-annotated
method and argument values passed to it. This is then given to
HttpExchangeAdapter
to adapt to the underlying HTTP client.- Since:
- 6.0
- Author:
- Rossen Stoyanchev
-
Nested Class Summary
-
Constructor Summary
ModifierConstructorDescriptionprotected
HttpRequestValues
(HttpMethod httpMethod, URI uri, String uriTemplate, Map<String, String> uriVariables, HttpHeaders headers, MultiValueMap<String, String> cookies, Map<String, Object> attributes, Object bodyValue) -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpRequestValues.Builder
builder()
Return the attributes associated with the request, or an empty map.Publisher<?>
getBody()
Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.in favor ofReactiveHttpRequestValues.getBodyPublisherElementType()
; to be removed in 6.2Return the request body as a value to be serialized, if set.Return the cookies for the request, or an empty map.Return the headers for the request, if any.Return the HTTP method to use for the request.getUri()
Return the URL to use.Return the URL template for the request.Return the URL template variables, or an empty map.
-
Constructor Details
-
HttpRequestValues
-
-
Method Details
-
getHttpMethod
Return the HTTP method to use for the request. -
getUri
Return the URL to use.Typically, this comes from a
URI
method argument, which provides the caller with the option to override theuriTemplate
from class and methodHttpExchange
annotations. annotation. -
getUriTemplate
Return the URL template for the request. This comes from the values in class and methodHttpExchange
annotations. -
getUriVariables
Return the URL template variables, or an empty map. -
getHeaders
Return the headers for the request, if any. -
getCookies
Return the cookies for the request, or an empty map. -
getAttributes
Return the attributes associated with the request, or an empty map. -
getBodyValue
Return the request body as a value to be serialized, if set. -
getBody
Deprecated, for removal: This API element is subject to removal in a future version.in favor ofReactiveHttpRequestValues.getBodyPublisher()
; to be removed in 6.2Return the request body as a Publisher.This is mutually exclusive with
getBodyValue()
. Only one of the two or neither is set. -
getBodyElementType
@Deprecated(since="6.1", forRemoval=true) @Nullable public ParameterizedTypeReference<?> getBodyElementType()Deprecated, for removal: This API element is subject to removal in a future version.in favor ofReactiveHttpRequestValues.getBodyPublisherElementType()
; to be removed in 6.2Return the element type for a Publisher body. -
builder
-
ReactiveHttpRequestValues.getBodyPublisher()
; to be removed in 6.2