Package | Description |
---|---|
org.springframework.web.context.request.async |
Support for asynchronous request processing.
|
org.springframework.web.servlet.config.annotation |
Annotation-based setup for Spring MVC.
|
org.springframework.web.servlet.mvc.method.annotation |
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package. |
Modifier and Type | Class and Description |
---|---|
class |
DeferredResultProcessingInterceptorAdapter
Deprecated.
as of 5.0 where DeferredResultProcessingInterceptor has default methods
|
class |
TimeoutDeferredResultProcessingInterceptor
Sends a 503 (SERVICE_UNAVAILABLE) in case of a timeout if the response is not
already committed.
|
Modifier and Type | Method and Description |
---|---|
DeferredResultProcessingInterceptor |
WebAsyncManager.getDeferredResultInterceptor(Object key)
Get the
DeferredResultProcessingInterceptor registered under the given key. |
Modifier and Type | Method and Description |
---|---|
void |
WebAsyncManager.registerDeferredResultInterceptor(Object key,
DeferredResultProcessingInterceptor interceptor)
Register a
DeferredResultProcessingInterceptor under the given key. |
void |
WebAsyncManager.registerDeferredResultInterceptors(DeferredResultProcessingInterceptor... interceptors)
Register one or more
DeferredResultProcessingInterceptors without a specified key. |
Modifier and Type | Method and Description |
---|---|
protected List<DeferredResultProcessingInterceptor> |
AsyncSupportConfigurer.getDeferredResultInterceptors() |
Modifier and Type | Method and Description |
---|---|
AsyncSupportConfigurer |
AsyncSupportConfigurer.registerDeferredResultInterceptors(DeferredResultProcessingInterceptor... interceptors)
Configure lifecycle interceptors with callbacks around concurrent request
execution that starts when a controller returns a
DeferredResult . |
Modifier and Type | Method and Description |
---|---|
void |
RequestMappingHandlerAdapter.setDeferredResultInterceptors(List<DeferredResultProcessingInterceptor> interceptors)
Configure
DeferredResultProcessingInterceptor 's to register on async requests. |