Java org.springframework.web.server ServerWebExchange fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.server ServerWebExchange fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.server ServerWebExchange.

The text is from its open source code.

Method

booleancheckNotModified(Instant lastModified)
An overloaded variant of #checkNotModified(String,Instant) with a last-modified timestamp only.
booleancheckNotModified(String etag)
An overloaded variant of #checkNotModified(String,Instant) with an ETag (entity tag) value only.
TgetAttribute(String name)
Return the request attribute value if present.
TgetAttributeOrDefault(String name, T defaultValue)
Return the request attribute value, or a default, fallback value.
MapgetAttributes()
Return a mutable map of request attributes for the current exchange.
Mono>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.
StringgetLogPrefix()
Return a log message prefix to use to correlate messages for this exchange.
ServerHttpRequestgetRequest()
Return the current HTTP request.
TgetRequiredAttribute(String name)
Return the request attribute value or if not present raise an IllegalArgumentException .
ServerHttpResponsegetResponse()
Return the current HTTP response.
MonogetSession()
Return the web session for the current request.