Package | Description |
---|---|
org.springframework.web.method.annotation |
Support classes for annotation-based handler method processing.
|
org.springframework.web.method.support |
Generic support classes for handler method processing.
|
Modifier and Type | Class and Description |
---|---|
class |
MapMethodProcessor
Resolves
Map method arguments and handles Map return values. |
class |
ModelAttributeMethodProcessor
Resolve
@ModelAttribute annotated method arguments and handle
return values from @ModelAttribute annotated methods. |
class |
ModelMethodProcessor
Resolves
Model arguments and handles Model return values. |
Modifier and Type | Interface and Description |
---|---|
interface |
AsyncHandlerMethodReturnValueHandler
A return value handler that supports async types.
|
Modifier and Type | Class and Description |
---|---|
class |
HandlerMethodReturnValueHandlerComposite
Handles method return values by delegating to a list of registered
HandlerMethodReturnValueHandler s. |
Modifier and Type | Method and Description |
---|---|
java.util.List<HandlerMethodReturnValueHandler> |
HandlerMethodReturnValueHandlerComposite.getHandlers()
Return a read-only list with the registered handlers, or an empty list.
|
Modifier and Type | Method and Description |
---|---|
HandlerMethodReturnValueHandlerComposite |
HandlerMethodReturnValueHandlerComposite.addHandler(HandlerMethodReturnValueHandler handler)
Add the given
HandlerMethodReturnValueHandler . |
Modifier and Type | Method and Description |
---|---|
HandlerMethodReturnValueHandlerComposite |
HandlerMethodReturnValueHandlerComposite.addHandlers(java.util.List<? extends HandlerMethodReturnValueHandler> handlers)
Add the given
HandlerMethodReturnValueHandler s. |