类 ScheduledExecutorFactoryBean
- java.lang.Object
- org.springframework.util.CustomizableThreadCreator
- org.springframework.scheduling.concurrent.CustomizableThreadFactory
- org.springframework.scheduling.concurrent.ExecutorConfigurationSupport
- org.springframework.scheduling.concurrent.ScheduledExecutorFactoryBean
- 所有已实现的接口:
Serializable,ThreadFactory,Aware,BeanNameAware,DisposableBean,FactoryBean<ScheduledExecutorService>,InitializingBean
public class ScheduledExecutorFactoryBean extends ExecutorConfigurationSupport implements FactoryBean<ScheduledExecutorService>
FactoryBeanthat sets up aScheduledExecutorService(by default: aScheduledThreadPoolExecutor) and exposes it for bean references.Allows for registration of
ScheduledExecutorTasks, automatically starting theScheduledExecutorServiceon initialization and cancelling it on destruction of the context. In scenarios that only require static registration of tasks at startup, there is no need to access theScheduledExecutorServiceinstance itself in application code at all;ScheduledExecutorFactoryBeanis then just being used for lifecycle integration.For an alternative, you may set up a
ScheduledThreadPoolExecutorinstance directly using constructor injection, or use a factory method definition that points to theExecutorsclass. This is strongly recommended in particular for common@Beanmethods in configuration classes, where thisFactoryBeanvariant would force you to return theFactoryBeantype instead ofScheduledExecutorService.Note that
ScheduledExecutorServiceuses aRunnableinstance that is shared between repeated executions, in contrast to Quartz which instantiates a new Job for each execution.WARNING:
Runnablessubmitted via a nativeScheduledExecutorServiceare removed from the execution schedule once they throw an exception. If you would prefer to continue execution after such an exception, switch this FactoryBean's"continueScheduledExecutionAfterException"property to "true".
字段概要
从类继承的字段 org.springframework.scheduling.concurrent.ExecutorConfigurationSupport
logger
构造器概要
构造器 构造器 说明 ScheduledExecutorFactoryBean()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 protected ScheduledExecutorServicecreateExecutor(int poolSize, ThreadFactory threadFactory, RejectedExecutionHandler rejectedExecutionHandler)Create a newScheduledExecutorServiceinstance.ScheduledExecutorServicegetObject()Return an instance (possibly shared or independent) of the object managed by this factory.Class<? extends ScheduledExecutorService>getObjectType()Return the type of object that this FactoryBean creates, ornullif not known in advance.protected RunnablegetRunnableToSchedule(ScheduledExecutorTask task)Determine the actual Runnable to schedule for the given task.protected ExecutorServiceinitializeExecutor(ThreadFactory threadFactory, RejectedExecutionHandler rejectedExecutionHandler)Create the targetExecutorServiceinstance.booleanisSingleton()Is the object managed by this factory a singleton?protected voidregisterTasks(ScheduledExecutorTask[] tasks, ScheduledExecutorService executor)Register the specifiedScheduledExecutorTaskson the givenScheduledExecutorService.voidsetContinueScheduledExecutionAfterException(boolean continueScheduledExecutionAfterException)Specify whether to continue the execution of a scheduled task after it threw an exception.voidsetExposeUnconfigurableExecutor(boolean exposeUnconfigurableExecutor)Specify whether this FactoryBean should expose an unconfigurable decorator for the created executor.voidsetPoolSize(int poolSize)Set the ScheduledExecutorService's pool size.voidsetRemoveOnCancelPolicy(boolean removeOnCancelPolicy)Set the remove-on-cancel mode onScheduledThreadPoolExecutor(JDK 7+).voidsetScheduledExecutorTasks(ScheduledExecutorTask... scheduledExecutorTasks)Register a list of ScheduledExecutorTask objects with the ScheduledExecutorService that this FactoryBean creates.从类继承的方法 org.springframework.scheduling.concurrent.ExecutorConfigurationSupport
afterPropertiesSet, destroy, initialize, setAwaitTerminationSeconds, setBeanName, setRejectedExecutionHandler, setThreadFactory, setThreadNamePrefix, setWaitForTasksToCompleteOnShutdown, shutdown
从类继承的方法 org.springframework.scheduling.concurrent.CustomizableThreadFactory
newThread
从类继承的方法 org.springframework.util.CustomizableThreadCreator
createThread, getDefaultThreadNamePrefix, getThreadGroup, getThreadNamePrefix, getThreadPriority, isDaemon, nextThreadName, setDaemon, setThreadGroup, setThreadGroupName, setThreadPriority
构造器详细资料
ScheduledExecutorFactoryBean
public ScheduledExecutorFactoryBean()
方法详细资料
setPoolSize
public void setPoolSize(int poolSize)
Set the ScheduledExecutorService's pool size. Default is 1.
setScheduledExecutorTasks
public void setScheduledExecutorTasks(ScheduledExecutorTask... scheduledExecutorTasks)
Register a list of ScheduledExecutorTask objects with the ScheduledExecutorService that this FactoryBean creates. Depending on each ScheduledExecutorTask's settings, it will be registered via one of ScheduledExecutorService's schedule methods.- 另请参阅:
ScheduledExecutorService.schedule(java.lang.Runnable, long, java.util.concurrent.TimeUnit),ScheduledExecutorService.scheduleWithFixedDelay(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit),ScheduledExecutorService.scheduleAtFixedRate(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)
setRemoveOnCancelPolicy
public void setRemoveOnCancelPolicy(boolean removeOnCancelPolicy)
Set the remove-on-cancel mode onScheduledThreadPoolExecutor(JDK 7+).Default is
false. If set totrue, the target executor will be switched into remove-on-cancel mode (if possible, with a soft fallback otherwise).
setContinueScheduledExecutionAfterException
public void setContinueScheduledExecutionAfterException(boolean continueScheduledExecutionAfterException)
Specify whether to continue the execution of a scheduled task after it threw an exception.Default is "false", matching the native behavior of a
ScheduledExecutorService. Switch this flag to "true" for exception-proof execution of each task, continuing scheduled execution as in the case of successful execution.
setExposeUnconfigurableExecutor
public void setExposeUnconfigurableExecutor(boolean exposeUnconfigurableExecutor)
Specify whether this FactoryBean should expose an unconfigurable decorator for the created executor.Default is "false", exposing the raw executor as bean reference. Switch this flag to "true" to strictly prevent clients from modifying the executor's configuration.
initializeExecutor
@UsesJava7 protected ExecutorService initializeExecutor(ThreadFactory threadFactory, RejectedExecutionHandler rejectedExecutionHandler)
从类复制的说明:ExecutorConfigurationSupportCreate the targetExecutorServiceinstance. Called byafterPropertiesSet.- 指定者:
initializeExecutor在类中ExecutorConfigurationSupport- 参数:
threadFactory- the ThreadFactory to userejectedExecutionHandler- the RejectedExecutionHandler to use- 返回:
- a new ExecutorService instance
- 另请参阅:
ExecutorConfigurationSupport.afterPropertiesSet()
createExecutor
protected ScheduledExecutorService createExecutor(int poolSize, ThreadFactory threadFactory, RejectedExecutionHandler rejectedExecutionHandler)
Create a newScheduledExecutorServiceinstance.The default implementation creates a
ScheduledThreadPoolExecutor. Can be overridden in subclasses to provide customScheduledExecutorServiceinstances.- 参数:
poolSize- the specified pool sizethreadFactory- the ThreadFactory to userejectedExecutionHandler- the RejectedExecutionHandler to use- 返回:
- a new ScheduledExecutorService instance
- 另请参阅:
ExecutorConfigurationSupport.afterPropertiesSet(),ScheduledThreadPoolExecutor
registerTasks
protected void registerTasks(ScheduledExecutorTask[] tasks, ScheduledExecutorService executor)
Register the specifiedScheduledExecutorTaskson the givenScheduledExecutorService.- 参数:
tasks- the specified ScheduledExecutorTasks (never empty)executor- the ScheduledExecutorService to register the tasks on.
getRunnableToSchedule
protected Runnable getRunnableToSchedule(ScheduledExecutorTask task)
Determine the actual Runnable to schedule for the given task.Wraps the task's Runnable in a
DelegatingErrorHandlingRunnablethat will catch and log the Exception. If necessary, it will suppress the Exception according to the"continueScheduledExecutionAfterException"flag.- 参数:
task- the ScheduledExecutorTask to schedule- 返回:
- the actual Runnable to schedule (may be a decorator)
getObject
public ScheduledExecutorService getObject()
从接口复制的说明:FactoryBeanReturn an instance (possibly shared or independent) of the object managed by this factory.As with a
BeanFactory, this allows support for both the Singleton and Prototype design pattern.If this FactoryBean is not fully initialized yet at the time of the call (for example because it is involved in a circular reference), throw a corresponding
FactoryBeanNotInitializedException.As of Spring 2.0, FactoryBeans are allowed to return
nullobjects. The factory will consider this as normal value to be used; it will not throw a FactoryBeanNotInitializedException in this case anymore. FactoryBean implementations are encouraged to throw FactoryBeanNotInitializedException themselves now, as appropriate.- 指定者:
getObject在接口中FactoryBean<ScheduledExecutorService>- 返回:
- an instance of the bean (can be
null) - 另请参阅:
FactoryBeanNotInitializedException
getObjectType
public Class<? extends ScheduledExecutorService> getObjectType()
从接口复制的说明:FactoryBeanReturn the type of object that this FactoryBean creates, ornullif not known in advance.This allows one to check for specific types of beans without instantiating objects, for example on autowiring.
In the case of implementations that are creating a singleton object, this method should try to avoid singleton creation as far as possible; it should rather estimate the type in advance. For prototypes, returning a meaningful type here is advisable too.
This method can be called before this FactoryBean has been fully initialized. It must not rely on state created during initialization; of course, it can still use such state if available.
NOTE: Autowiring will simply ignore FactoryBeans that return
nullhere. Therefore it is highly recommended to implement this method properly, using the current state of the FactoryBean.- 指定者:
getObjectType在接口中FactoryBean<ScheduledExecutorService>- 返回:
- the type of object that this FactoryBean creates, or
nullif not known at the time of the call - 另请参阅:
ListableBeanFactory.getBeansOfType(java.lang.Class<T>)
isSingleton
public boolean isSingleton()
从接口复制的说明:FactoryBeanIs the object managed by this factory a singleton? That is, willFactoryBean.getObject()always return the same object (a reference that can be cached)?NOTE: If a FactoryBean indicates to hold a singleton object, the object returned from
getObject()might get cached by the owning BeanFactory. Hence, do not returntrueunless the FactoryBean always exposes the same reference.The singleton status of the FactoryBean itself will generally be provided by the owning BeanFactory; usually, it has to be defined as singleton there.
NOTE: This method returning
falsedoes not necessarily indicate that returned objects are independent instances. An implementation of the extendedSmartFactoryBeaninterface may explicitly indicate independent instances through itsSmartFactoryBean.isPrototype()method. PlainFactoryBeanimplementations which do not implement this extended interface are simply assumed to always return independent instances if theisSingleton()implementation returnsfalse.- 指定者:
isSingleton在接口中FactoryBean<ScheduledExecutorService>- 返回:
- whether the exposed object is a singleton
- 另请参阅:
FactoryBean.getObject(),SmartFactoryBean.isPrototype()