Package org.springframework.web.reactive
Class HandlerResult
java.lang.Object
org.springframework.web.reactive.HandlerResult
Represent the result of the invocation of a handler or a handler method.
- Since:
- 5.0
- Author:
- Rossen Stoyanchev
-
Constructor Summary
ConstructorDescriptionHandlerResult
(Object handler, Object returnValue, MethodParameter returnType) Create a newHandlerResult
.HandlerResult
(Object handler, Object returnValue, MethodParameter returnType, BindingContext context) Create a newHandlerResult
. -
Method Summary
Modifier and TypeMethodDescriptionReturn the BindingContext used for request handling.Return theconfigured
exception handler.Return the handler that handled the request.getModel()
Return the model used for request handling.Return the type of the value returned from the handler -- e.g.Return theMethodParameter
from whichreturnType
was created.Return the value returned from the handler, if any.setExceptionHandler
(DispatchExceptionHandler exceptionHandler) HandlerAdapter
classes can set this to have their exception handling mechanism applied to response rendering and to deferred exceptions when invoking a handler with an asynchronous return value.
-
Constructor Details
-
HandlerResult
Create a newHandlerResult
.- Parameters:
handler
- the handler that handled the requestreturnValue
- the return value from the handler possiblynull
returnType
- the return value type
-
HandlerResult
public HandlerResult(Object handler, @Nullable Object returnValue, MethodParameter returnType, @Nullable BindingContext context) Create a newHandlerResult
.- Parameters:
handler
- the handler that handled the requestreturnValue
- the return value from the handler possiblynull
returnType
- the return value typecontext
- the binding context used for request handling
-
-
Method Details
-
getHandler
Return the handler that handled the request. -
getReturnValue
Return the value returned from the handler, if any. -
getReturnType
Return the type of the value returned from the handler -- e.g. the return type declared on a controller method's signature. Also seegetReturnTypeSource()
to obtain the underlyingMethodParameter
for the return type. -
getReturnTypeSource
Return theMethodParameter
from whichreturnType
was created. -
getBindingContext
Return the BindingContext used for request handling. -
getModel
Return the model used for request handling. This is a shortcut forgetBindingContext().getModel()
. -
setExceptionHandler
HandlerAdapter
classes can set this to have their exception handling mechanism applied to response rendering and to deferred exceptions when invoking a handler with an asynchronous return value.- Parameters:
exceptionHandler
- the exception handler to use- Since:
- 6.0
-
getExceptionHandler
Return theconfigured
exception handler.- Since:
- 6.0
-