我有一个 Spring @Configuration 类,如下所示:
@Configuration
public class ExecutorServiceConfiguration {
@Bean
public BlockingQueue<Runnable> queue() {
return ArrayBlockingQueue<>(1000);
}
@Bean
public ExecutorService executor(BlockingQueue<Runnable> queue) {
return ThreadPoolExecutor(1, 1, 0L, TimeUnit.MILLISECONDS, queue);
}
@PreDestroy
public void shutdownExecutor() {
// no executor instance
}
}
我还想指定一个@PreDestroy
关闭 ExecutorService 的方法。但是,该@PreDestroy
方法不能有任何参数,这就是为什么我无法将executor
bean 传递给该方法以关闭它的原因。指定destroy方法@Bean(destroyMethod = "...")
也不起作用。它允许我指定现有的shutdown
or shutdownNow
,但不能指定我打算使用的自定义方法。
我知道我可以直接实例化队列和执行程序,而不是作为 Spring bean,但我宁愿这样做。