Uses of Interface
org.springframework.web.reactive.function.server.ServerResponse
Packages that use ServerResponse Package Description org.springframework.web.reactive.function.server Provides the types that make up Spring's functional web framework for Reactive environments.Uses of ServerResponse in org.springframework.web.reactive.function.server
Classes in org.springframework.web.reactive.function.server with type parameters of type ServerResponse Modifier and Type Interface Description interfaceHandlerFilterFunction<T extends ServerResponse,R extends ServerResponse>Represents a function that filters a handler function.interfaceHandlerFilterFunction<T extends ServerResponse,R extends ServerResponse>Represents a function that filters a handler function.interfaceHandlerFunction<T extends ServerResponse>Represents a function that handles a request.interfaceRouterFunction<T extends ServerResponse>Represents a function that routes to a handler function.Subinterfaces of ServerResponse in org.springframework.web.reactive.function.server Modifier and Type Interface Description interfaceEntityResponse<T>Entity-specific subtype ofServerResponsethat exposes entity data.interfaceRenderingResponseRendering-specific subtype ofServerResponsethat exposes model and template data.Methods in org.springframework.web.reactive.function.server with type parameters of type ServerResponse Modifier and Type Method Description default <S extends ServerResponse>
RouterFunction<S>RouterFunction. filter(HandlerFilterFunction<T,S> filterFunction)Filter all handler functions routed by this function with the given filter function.static <T extends ServerResponse>
RouterFunction<T>RouterFunctions. nest(RequestPredicate predicate, RouterFunction<T> routerFunction)Route to the given router function if the given request predicate applies.static <T extends ServerResponse,R extends ServerResponse>
HandlerFilterFunction<T,R>HandlerFilterFunction. ofResponseProcessor(Function<T,reactor.core.publisher.Mono<R>> responseProcessor)Adapt the given response processor function to a filter function that only operates on theServerResponse.static <T extends ServerResponse,R extends ServerResponse>
HandlerFilterFunction<T,R>HandlerFilterFunction. ofResponseProcessor(Function<T,reactor.core.publisher.Mono<R>> responseProcessor)Adapt the given response processor function to a filter function that only operates on theServerResponse.static <T extends ServerResponse>
RouterFunction<T>RouterFunctions. route(RequestPredicate predicate, HandlerFunction<T> handlerFunction)Route to the given handler function if the given request predicate applies.Methods in org.springframework.web.reactive.function.server that return types with arguments of type ServerResponse Modifier and Type Method Description reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder. body(Object producer, Class<?> elementClass)Variant ofServerResponse.BodyBuilder.body(Publisher, Class)that allows using any producer that can be resolved toPublisherviaReactiveAdapterRegistry.reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder. body(Object producer, ParameterizedTypeReference<?> elementTypeRef)Variant ofServerResponse.BodyBuilder.body(Publisher, ParameterizedTypeReference)that allows using any producer that can be resolved toPublisherviaReactiveAdapterRegistry.reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder. body(BodyInserter<?,? super ServerHttpResponse> inserter)Set the body of the response to the givenBodyInserterand return it.<T,P extends org.reactivestreams.Publisher<T>>
reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder. body(P publisher, Class<T> elementClass)Set the body from the givenPublisher.<T,P extends org.reactivestreams.Publisher<T>>
reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder. body(P publisher, ParameterizedTypeReference<T> elementTypeRef)Variant ofServerResponse.BodyBuilder.body(Publisher, Class)that allows using any producer that can be resolved toPublisherviaReactiveAdapterRegistry.reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder. bodyValue(Object body)Set the body of the response to the givenObjectand return it.RouterFunction<ServerResponse>RouterFunctions.Builder. build()Builds theRouterFunction.reactor.core.publisher.Mono<ServerResponse>ServerResponse.HeadersBuilder. build()Build the response entity with no body.reactor.core.publisher.Mono<ServerResponse>ServerResponse.HeadersBuilder. build(BiFunction<ServerWebExchange,ServerResponse.Context,reactor.core.publisher.Mono<Void>> writeFunction)Build the response entity with a custom writer function.reactor.core.publisher.Mono<ServerResponse>ServerResponse.HeadersBuilder. build(org.reactivestreams.Publisher<Void> voidPublisher)Build the response entity with no body.default reactor.core.publisher.Mono<ServerResponse>ServerRequest. checkNotModified(String etag)Check whether the requested resource has been modified given the suppliedETag(entity tag), as determined by the application.default reactor.core.publisher.Mono<ServerResponse>ServerRequest. checkNotModified(Instant lastModified)Check whether the requested resource has been modified given the supplied last-modified timestamp (as determined by the application).default reactor.core.publisher.Mono<ServerResponse>ServerRequest. checkNotModified(Instant lastModified, String etag)Check whether the requested resource has been modified given the suppliedETag(entity tag) and last-modified timestamp, as determined by the application.reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder. render(String name, Object... modelAttributes)Render the template with the givennameusing the givenmodelAttributes.reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder. render(String name, Map<String,?> model)Render the template with the givennameusing the givenmodel.static RouterFunction<ServerResponse>RouterFunctions. resources(String pattern, Resource location)Route requests that match the given pattern to resources relative to the given root location.static RouterFunction<ServerResponse>RouterFunctions. resources(Function<ServerRequest,reactor.core.publisher.Mono<Resource>> lookupFunction)Route to resources using the provided lookup function.reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder. syncBody(Object body)Deprecated.as of Spring Framework 5.2 in favor ofServerResponse.BodyBuilder.bodyValue(Object)Methods in org.springframework.web.reactive.function.server with parameters of type ServerResponse Modifier and Type Method Description static ServerResponse.BodyBuilderServerResponse. from(ServerResponse other)Create a builder with the status code and headers of the given response.Method parameters in org.springframework.web.reactive.function.server with type arguments of type ServerResponse Modifier and Type Method Description RouterFunctions.BuilderRouterFunctions.Builder. add(RouterFunction<ServerResponse> routerFunction)Adds the given route to this builder.RouterFunctions.BuilderRouterFunctions.Builder. after(BiFunction<ServerRequest,ServerResponse,ServerResponse> responseProcessor)Filter the response object for all routes created by this builder with the given response processing function.RouterFunctions.BuilderRouterFunctions.Builder. after(BiFunction<ServerRequest,ServerResponse,ServerResponse> responseProcessor)Filter the response object for all routes created by this builder with the given response processing function.RouterFunctions.BuilderRouterFunctions.Builder. DELETE(String pattern, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPDELETErequests that match the given pattern.RouterFunctions.BuilderRouterFunctions.Builder. DELETE(String pattern, RequestPredicate predicate, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPDELETErequests that match the given pattern and predicate.RouterFunctions.BuilderRouterFunctions.Builder. filter(HandlerFilterFunction<ServerResponse,ServerResponse> filterFunction)Filters all routes created by this builder with the given filter function.RouterFunctions.BuilderRouterFunctions.Builder. filter(HandlerFilterFunction<ServerResponse,ServerResponse> filterFunction)Filters all routes created by this builder with the given filter function.RouterFunctions.BuilderRouterFunctions.Builder. GET(String pattern, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPGETrequests that match the given pattern.RouterFunctions.BuilderRouterFunctions.Builder. GET(String pattern, RequestPredicate predicate, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPGETrequests that match the given pattern and predicate.RouterFunctions.BuilderRouterFunctions.Builder. HEAD(String pattern, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPHEADrequests that match the given pattern.RouterFunctions.BuilderRouterFunctions.Builder. HEAD(String pattern, RequestPredicate predicate, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPHEADrequests that match the given pattern and predicate.RouterFunctions.BuilderRouterFunctions.Builder. nest(RequestPredicate predicate, Supplier<RouterFunction<ServerResponse>> routerFunctionSupplier)Route to the supplied router function if the given request predicate applies.<T extends Throwable>
RouterFunctions.BuilderRouterFunctions.Builder. onError(Class<T> exceptionType, BiFunction<? super T,ServerRequest,reactor.core.publisher.Mono<ServerResponse>> responseProvider)Filters all exceptions of the given type by applying the given response provider function.RouterFunctions.BuilderRouterFunctions.Builder. onError(Predicate<? super Throwable> predicate, BiFunction<? super Throwable,ServerRequest,reactor.core.publisher.Mono<ServerResponse>> responseProvider)Filters all exceptions that match the predicate by applying the given response provider function.RouterFunctions.BuilderRouterFunctions.Builder. OPTIONS(String pattern, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPOPTIONSrequests that match the given pattern.RouterFunctions.BuilderRouterFunctions.Builder. OPTIONS(String pattern, RequestPredicate predicate, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPOPTIONSrequests that match the given pattern and predicate.RouterFunctions.BuilderRouterFunctions.Builder. PATCH(String pattern, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPPATCHrequests that match the given pattern.RouterFunctions.BuilderRouterFunctions.Builder. PATCH(String pattern, RequestPredicate predicate, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPPATCHrequests that match the given pattern and predicate.RouterFunctions.BuilderRouterFunctions.Builder. path(String pattern, Supplier<RouterFunction<ServerResponse>> routerFunctionSupplier)Route to the supplied router function if the given path prefix pattern applies.RouterFunctions.BuilderRouterFunctions.Builder. POST(String pattern, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPPOSTrequests that match the given pattern.RouterFunctions.BuilderRouterFunctions.Builder. POST(String pattern, RequestPredicate predicate, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPPOSTrequests that match the given pattern and predicate.RouterFunctions.BuilderRouterFunctions.Builder. PUT(String pattern, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPPUTrequests that match the given pattern.RouterFunctions.BuilderRouterFunctions.Builder. PUT(String pattern, RequestPredicate predicate, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all HTTPPUTrequests that match the given pattern and predicate.RouterFunctions.BuilderRouterFunctions.Builder. route(RequestPredicate predicate, HandlerFunction<ServerResponse> handlerFunction)Adds a route to the given handler function that handles all requests that match the given predicate.