Package org.springframework.web.server
Interface ServerWebExchange
- All Known Implementing Classes:
- DefaultServerWebExchange,- MockServerWebExchange,- ServerWebExchangeDecorator
public interface ServerWebExchange
Contract for an HTTP request-response interaction. Provides access to the HTTP
 request and response and also exposes additional server-side processing
 related properties and features such as request attributes.
- Since:
- 5.0
- Author:
- Rossen Stoyanchev
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic interfaceBuilder for mutating an existingServerWebExchange.
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddUrlTransformer(Function<String, String> transformer) Register an additional URL transformation function for use withtransformUrl(java.lang.String).booleancheckNotModified(String etag) An overloaded variant ofcheckNotModified(String, Instant)with anETag(entity tag) value only.booleancheckNotModified(String etag, Instant lastModified) Check whether the requested resource has been modified given the suppliedETag(entity tag) and last-modified timestamp as determined by the application.booleancheckNotModified(Instant lastModified) An overloaded variant ofcheckNotModified(String, Instant)with a last-modified timestamp only.Return theApplicationContextassociated with the web application, if it was initialized with one viaWebHttpHandlerBuilder.applicationContext(ApplicationContext).default <T> TgetAttribute(String name) Return the request attribute value if present.default <T> TgetAttributeOrDefault(String name, T defaultValue) Return the request attribute value, or a default, fallback value.Return a mutable map of request attributes for the current exchange.reactor.core.publisher.Mono<MultiValueMap<String,String>> Return the form data from the body of the request if the Content-Type is"application/x-www-form-urlencoded"or an empty map otherwise.Return theLocaleContextusing the configuredLocaleContextResolver.Return a log message prefix to use to correlate messages for this exchange.reactor.core.publisher.Mono<MultiValueMap<String,Part>> Return the parts of a multipart request if the Content-Type is"multipart/form-data"or an empty map otherwise.<T extends Principal>
 reactor.core.publisher.Mono<T>Return the authenticated user for the request, if any.Return the current HTTP request.default <T> TgetRequiredAttribute(String name) Return the request attribute value or if not present raise anIllegalArgumentException.Return the current HTTP response.reactor.core.publisher.Mono<WebSession>Return the web session for the current request.booleanReturnstrueif the one of thecheckNotModifiedmethods in this contract were used and they returned true.default ServerWebExchange.Buildermutate()Return a builder to mutate properties of this exchange by wrapping it withServerWebExchangeDecoratorand returning either mutated values or delegating back to this instance.transformUrl(String url) Transform the given url according to the registered transformation function(s).
- 
Field Details- 
LOG_ID_ATTRIBUTEName ofattributewhose value can be used to correlate log messages for this exchange. UsegetLogPrefix()to obtain a consistently formatted prefix based on this attribute.- Since:
- 5.1
- See Also:
 
 
- 
- 
Method Details- 
getRequestServerHttpRequest getRequest()Return the current HTTP request.
- 
getResponseServerHttpResponse getResponse()Return the current HTTP response.
- 
getAttributesReturn a mutable map of request attributes for the current exchange.
- 
getAttributeReturn the request attribute value if present.- Type Parameters:
- T- the attribute type
- Parameters:
- name- the attribute name
- Returns:
- the attribute value
 
- 
getRequiredAttributeReturn the request attribute value or if not present raise anIllegalArgumentException.- Type Parameters:
- T- the attribute type
- Parameters:
- name- the attribute name
- Returns:
- the attribute value
 
- 
getAttributeOrDefaultReturn the request attribute value, or a default, fallback value.- Type Parameters:
- T- the attribute type
- Parameters:
- name- the attribute name
- defaultValue- a default value to return instead
- Returns:
- the attribute value
 
- 
getSessionreactor.core.publisher.Mono<WebSession> getSession()Return the web session for the current request. Always guaranteed to return an instance either matching to the session id requested by the client, or with a new session id either because the client did not specify one or because the underlying session had expired. Use of this method does not automatically create a session. SeeWebSessionfor more details.
- 
getPrincipalReturn the authenticated user for the request, if any.
- 
getFormDatareactor.core.publisher.Mono<MultiValueMap<String,String>> getFormData()Return the form data from the body of the request if the Content-Type is"application/x-www-form-urlencoded"or an empty map otherwise.Note: calling this method causes the request body to be read and parsed in full and the resulting MultiValueMapis cached so that this method is safe to call more than once.
- 
getMultipartDatareactor.core.publisher.Mono<MultiValueMap<String,Part>> getMultipartData()Return the parts of a multipart request if the Content-Type is"multipart/form-data"or an empty map otherwise.Note: calling this method causes the request body to be read and parsed in full and the resulting MultiValueMapis cached so that this method is safe to call more than once.Note:the contents of each part is not cached, and can only be read once. 
- 
getLocaleContextLocaleContext getLocaleContext()Return theLocaleContextusing the configuredLocaleContextResolver.
- 
getApplicationContextReturn theApplicationContextassociated with the web application, if it was initialized with one viaWebHttpHandlerBuilder.applicationContext(ApplicationContext).- Since:
- 5.0.3
- See Also:
 
- 
isNotModifiedboolean isNotModified()Returnstrueif the one of thecheckNotModifiedmethods in this contract were used and they returned true.
- 
checkNotModifiedAn overloaded variant ofcheckNotModified(String, Instant)with a last-modified timestamp only.- Parameters:
- lastModified- the last-modified time
- Returns:
- whether the request qualifies as not modified
 
- 
checkNotModifiedAn overloaded variant ofcheckNotModified(String, Instant)with anETag(entity tag) value only.- Parameters:
- etag- the entity tag for the underlying resource.
- Returns:
- true if the request does not require further processing.
 
- 
checkNotModifiedCheck whether the requested resource has been modified given the suppliedETag(entity tag) and last-modified timestamp as determined by the application. Also transparently prepares the response, setting HTTP status, and adding "ETag" and "Last-Modified" headers when applicable. This method works with conditional GET/HEAD requests as well as with conditional POST/PUT/DELETE requests.Note: The HTTP specification recommends setting both ETag and Last-Modified values, but you can also use #checkNotModified(String)orcheckNotModified(Instant).- Parameters:
- etag- the entity tag that the application determined for the underlying resource. This parameter will be padded with quotes (") if necessary.
- lastModified- the last-modified timestamp that the application determined for the underlying resource
- Returns:
- true if the request does not require further processing.
 
- 
transformUrlTransform the given url according to the registered transformation function(s). By default, this method returns the givenurl, though additional transformation functions can be registered withaddUrlTransformer(java.util.function.Function<java.lang.String, java.lang.String>)- Parameters:
- url- the URL to transform
- Returns:
- the transformed URL
 
- 
addUrlTransformerRegister an additional URL transformation function for use withtransformUrl(java.lang.String). The given function can be used to insert an id for authentication, a nonce for CSRF protection, etc.Note that the given function is applied after any previously registered functions. - Parameters:
- transformer- a URL transformation function to add
 
- 
getLogPrefixString getLogPrefix()Return a log message prefix to use to correlate messages for this exchange. The prefix is based on the value of the attributeLOG_ID_ATTRIBUTEalong with some extra formatting so that the prefix can be conveniently prepended with no further formatting no separators required.- Returns:
- the log message prefix or an empty String if the
 LOG_ID_ATTRIBUTEis not set.
- Since:
- 5.1
 
- 
mutateReturn a builder to mutate properties of this exchange by wrapping it withServerWebExchangeDecoratorand returning either mutated values or delegating back to this instance.
 
-