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 |
CallableProcessingInterceptorAdapter
Deprecated.
as of 5.0 where CallableProcessingInterceptor has default methods
|
class |
TimeoutCallableProcessingInterceptor
Sends a 503 (SERVICE_UNAVAILABLE) in case of a timeout if the response is not
already committed.
|
Modifier and Type | Method and Description |
---|---|
CallableProcessingInterceptor |
WebAsyncManager.getCallableInterceptor(java.lang.Object key)
Get the
CallableProcessingInterceptor registered under the given key. |
Modifier and Type | Method and Description |
---|---|
void |
WebAsyncManager.registerCallableInterceptor(java.lang.Object key,
CallableProcessingInterceptor interceptor)
Register a
CallableProcessingInterceptor under the given key. |
void |
WebAsyncManager.registerCallableInterceptors(CallableProcessingInterceptor... interceptors)
Register a
CallableProcessingInterceptor without a key. |
Modifier and Type | Method and Description |
---|---|
protected java.util.List<CallableProcessingInterceptor> |
AsyncSupportConfigurer.getCallableInterceptors() |
Modifier and Type | Method and Description |
---|---|
AsyncSupportConfigurer |
AsyncSupportConfigurer.registerCallableInterceptors(CallableProcessingInterceptor... interceptors)
Configure lifecycle interceptors with callbacks around concurrent request
execution that starts when a controller returns a
Callable . |
Modifier and Type | Method and Description |
---|---|
void |
RequestMappingHandlerAdapter.setCallableInterceptors(java.util.List<CallableProcessingInterceptor> interceptors)
Configure
CallableProcessingInterceptor 's to register on async requests. |