类 AsyncSupportConfigurer
- java.lang.Object
- org.springframework.web.servlet.config.annotation.AsyncSupportConfigurer
public class AsyncSupportConfigurer extends Object
Helps with configuring options for asynchronous request processing.- 从以下版本开始:
- 3.2
- 作者:
- Rossen Stoyanchev
构造器概要
构造器 构造器 说明 AsyncSupportConfigurer()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 protected List<CallableProcessingInterceptor>getCallableInterceptors()protected List<DeferredResultProcessingInterceptor>getDeferredResultInterceptors()protected AsyncTaskExecutorgetTaskExecutor()protected LonggetTimeout()AsyncSupportConfigurerregisterCallableInterceptors(CallableProcessingInterceptor... interceptors)Configure lifecycle interceptors with callbacks around concurrent request execution that starts when a controller returns aCallable.AsyncSupportConfigurerregisterDeferredResultInterceptors(DeferredResultProcessingInterceptor... interceptors)Configure lifecycle interceptors with callbacks around concurrent request execution that starts when a controller returns aDeferredResult.AsyncSupportConfigurersetDefaultTimeout(long timeout)Specify the amount of time, in milliseconds, before asynchronous request handling times out.AsyncSupportConfigurersetTaskExecutor(AsyncTaskExecutor taskExecutor)The provided task executor is used to: HandleCallablecontroller method return values.
构造器详细资料
AsyncSupportConfigurer
public AsyncSupportConfigurer()
方法详细资料
setTaskExecutor
public AsyncSupportConfigurer setTaskExecutor(AsyncTaskExecutor taskExecutor)
The provided task executor is used to:- Handle
Callablecontroller method return values. - Perform blocking writes when streaming to the response through a reactive (e.g. Reactor, RxJava) controller method return value.
By default only a
SimpleAsyncTaskExecutoris used. However when using the above two use cases, it's recommended to configure an executor backed by a thread pool such asThreadPoolTaskExecutor.- 参数:
taskExecutor- the task executor instance to use by default
- Handle
setDefaultTimeout
public AsyncSupportConfigurer setDefaultTimeout(long timeout)
Specify the amount of time, in milliseconds, before asynchronous request handling times out. In Servlet 3, the timeout begins after the main request processing thread has exited and ends when the request is dispatched again for further processing of the concurrently produced result.If this value is not set, the default timeout of the underlying implementation is used.
- 参数:
timeout- the timeout value in milliseconds
registerCallableInterceptors
public AsyncSupportConfigurer registerCallableInterceptors(CallableProcessingInterceptor... interceptors)
Configure lifecycle interceptors with callbacks around concurrent request execution that starts when a controller returns aCallable.- 参数:
interceptors- the interceptors to register
registerDeferredResultInterceptors
public AsyncSupportConfigurer registerDeferredResultInterceptors(DeferredResultProcessingInterceptor... interceptors)
Configure lifecycle interceptors with callbacks around concurrent request execution that starts when a controller returns aDeferredResult.- 参数:
interceptors- the interceptors to register
getTaskExecutor
@Nullable protected AsyncTaskExecutor getTaskExecutor()
getTimeout
@Nullable protected Long getTimeout()
getCallableInterceptors
protected List<CallableProcessingInterceptor> getCallableInterceptors()
getDeferredResultInterceptors
protected List<DeferredResultProcessingInterceptor> getDeferredResultInterceptors()