Java org.springframework.web.reactive.function.server ServerRequest fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Method

Mapattributes()
Get a mutable map of request attributes.
MonobodyToMono(Class elementClass)
Extract the body to a Mono .
MonobodyToMono(ParameterizedTypeReference typeReference)
Extract the body to a Mono .
ServerRequestcreate(ServerWebExchange exchange, List> messageReaders)
Create a new ServerRequest based on the given ServerWebExchange and message readers.
ServerWebExchangeexchange()
Get the web exchange that this request is based on.
Headersheaders()
Get the headers of this request.
HttpMethodmethod()
Get the HTTP method.
StringmethodName()
Get the name of the HTTP method.
Stringpath()
Get the request path.
StringpathVariable(String name)
Get the path variable with the given name, if present.
Monoprincipal()
Get the authenticated user for the request, if any.
OptionalqueryParam(String name)
Get the first query parameter with the given name, if present.
Monosession()
Get the web session for this request.
URIuri()
Get the request URI.
UriBuilderuriBuilder()
Get a UriBuilderComponents from the URI associated with this ServerRequest .