public class HandlerMethodReturnValueHandlerComposite extends Object implements HandlerMethodReturnValueHandler
HandlerMethodReturnValueHandlers
.
Previously resolved return types are cached for faster lookups.Constructor and Description |
---|
HandlerMethodReturnValueHandlerComposite() |
Modifier and Type | Method and Description |
---|---|
HandlerMethodReturnValueHandlerComposite |
addHandler(HandlerMethodReturnValueHandler handler)
Add the given
HandlerMethodReturnValueHandler . |
HandlerMethodReturnValueHandlerComposite |
addHandlers(List<? extends HandlerMethodReturnValueHandler> handlers)
Add the given
HandlerMethodReturnValueHandlers . |
List<HandlerMethodReturnValueHandler> |
getHandlers()
Return a read-only list with the registered handlers, or an empty list.
|
void |
handleReturnValue(Object returnValue,
MethodParameter returnType,
ModelAndViewContainer mavContainer,
NativeWebRequest webRequest)
Iterate over registered
HandlerMethodReturnValueHandlers and invoke the one that supports it. |
boolean |
supportsReturnType(MethodParameter returnType)
Whether the given method return type is supported by any registered
HandlerMethodReturnValueHandler . |
public HandlerMethodReturnValueHandlerComposite()
public List<HandlerMethodReturnValueHandler> getHandlers()
public boolean supportsReturnType(MethodParameter returnType)
HandlerMethodReturnValueHandler
.supportsReturnType
in interface HandlerMethodReturnValueHandler
returnType
- the method return type to checktrue
if this handler supports the supplied return type;
false
otherwisepublic void handleReturnValue(@Nullable Object returnValue, MethodParameter returnType, ModelAndViewContainer mavContainer, NativeWebRequest webRequest) throws Exception
HandlerMethodReturnValueHandlers
and invoke the one that supports it.handleReturnValue
in interface HandlerMethodReturnValueHandler
returnValue
- the value returned from the handler methodreturnType
- the type of the return value. This type must have
previously been passed to HandlerMethodReturnValueHandler.supportsReturnType(org.springframework.core.MethodParameter)
which must
have returned true
.mavContainer
- the ModelAndViewContainer for the current requestwebRequest
- the current requestIllegalStateException
- if no suitable HandlerMethodReturnValueHandler
is found.Exception
- if the return value handling results in an errorpublic HandlerMethodReturnValueHandlerComposite addHandler(HandlerMethodReturnValueHandler handler)
HandlerMethodReturnValueHandler
.public HandlerMethodReturnValueHandlerComposite addHandlers(@Nullable List<? extends HandlerMethodReturnValueHandler> handlers)
HandlerMethodReturnValueHandlers
.