ThreadPoolExecutorFactoryBean是实现DisposableBean的FactoryBean。当像这样在 Spring 的 XML bean 定义中使用时
<bean id="executorService"
class="org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean"/>
创建的 bean 将是ExecutorService的一个实例,并确保ThreadPoolExecutorFactoryBean#destroy()
在 Spring 应用程序上下文关闭后被调用。
是否可以使用 Spring 3 的@Configuration类配置这样的 bean ?