Class ServerResponseResultHandler
java.lang.Object
org.springframework.web.reactive.function.server.support.ServerResponseResultHandler
- All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean,org.springframework.core.Ordered,HandlerResultHandler
public class ServerResponseResultHandler
extends Object
implements HandlerResultHandler, org.springframework.beans.factory.InitializingBean, org.springframework.core.Ordered
HandlerResultHandler implementation that supports ServerResponses.- Since:
- 5.0
- Author:
- Arjen Poutsma
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidList<org.springframework.http.codec.HttpMessageWriter<?>>Return the configuredHttpMessageWriter's.intgetOrder()Return the configuredViewResolver's.reactor.core.publisher.Mono<Void>handleResult(org.springframework.web.server.ServerWebExchange exchange, HandlerResult result) Process the given result modifying response headers and/or writing data to the response.voidsetMessageWriters(List<org.springframework.http.codec.HttpMessageWriter<?>> configurer) Configure HTTP message writers to serialize the request body with.voidsetOrder(int order) Set the order for this result handler relative to others.voidsetViewResolvers(List<ViewResolver> viewResolvers) Set the current view resolvers.booleansupports(HandlerResult result) Whether this handler supports the givenHandlerResult.
-
Constructor Details
-
ServerResponseResultHandler
public ServerResponseResultHandler()
-
-
Method Details
-
setMessageWriters
Configure HTTP message writers to serialize the request body with.By default, this is set to
ServerCodecConfigurer's default writers. -
getMessageWriters
Return the configuredHttpMessageWriter's.- Since:
- 6.2.3
-
setViewResolvers
Set the current view resolvers. -
getViewResolvers
Return the configuredViewResolver's.- Since:
- 6.2.3
-
setOrder
public void setOrder(int order) Set the order for this result handler relative to others.By default, set to 0. It is generally safe to place it early in the order as it looks for a concrete return type.
-
getOrder
public int getOrder()- Specified by:
getOrderin interfaceorg.springframework.core.Ordered
-
afterPropertiesSet
- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Throws:
Exception
-
supports
Description copied from interface:HandlerResultHandlerWhether this handler supports the givenHandlerResult.- Specified by:
supportsin interfaceHandlerResultHandler- Parameters:
result- the result object to check- Returns:
- whether this object can use the given result
-
handleResult
public reactor.core.publisher.Mono<Void> handleResult(org.springframework.web.server.ServerWebExchange exchange, HandlerResult result) Description copied from interface:HandlerResultHandlerProcess the given result modifying response headers and/or writing data to the response.- Specified by:
handleResultin interfaceHandlerResultHandler- Parameters:
exchange- current server exchangeresult- the result from the handling- Returns:
Mono<Void>to indicate when request handling is complete.
-