Uses of Interface
org.springframework.web.reactive.function.server.ServerRequest.Builder
Packages that use ServerRequest.Builder Package Description org.springframework.web.reactive.function.server Provides the types that make up Spring's functional web framework for Reactive environments.Uses of ServerRequest.Builder in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return ServerRequest.Builder Modifier and Type Method Description ServerRequest.BuilderServerRequest.Builder. attribute(String name, Object value)Add an attribute with the given name and value.ServerRequest.BuilderServerRequest.Builder. attributes(Consumer<Map<String,Object>> attributesConsumer)Manipulate this request's attributes with the given consumer.ServerRequest.BuilderServerRequest.Builder. body(String body)Set the body of the request to the UTF-8 encoded bytes of the given string.ServerRequest.BuilderServerRequest.Builder. body(reactor.core.publisher.Flux<DataBuffer> body)Set the body of the request.ServerRequest.BuilderServerRequest.Builder. cookie(String name, String... values)Add a cookie with the given name and value(s).ServerRequest.BuilderServerRequest.Builder. cookies(Consumer<MultiValueMap<String,HttpCookie>> cookiesConsumer)Manipulate this request's cookies with the given consumer.static ServerRequest.BuilderServerRequest. from(ServerRequest other)Create a builder with the message readers, method name, URI, headers, cookies, and attributes of the given request.ServerRequest.BuilderServerRequest.Builder. header(String headerName, String... headerValues)Add the given header value(s) under the given name.ServerRequest.BuilderServerRequest.Builder. headers(Consumer<HttpHeaders> headersConsumer)Manipulate this request's headers with the given consumer.ServerRequest.BuilderServerRequest.Builder. method(HttpMethod method)Set the method of the request.ServerRequest.BuilderServerRequest.Builder. uri(URI uri)Set the URI of the request.