使用springcloud,添加异步方法后,调用异步成功,但有个 No task executor bean found for async processing: no bean of type TaskExecut 的异常抛出。
经过试验,确定是因为没有配置异步线程池导致的。即使未配置,异步任务任然是成功的,可能使用的默认设置。
解决办法是添加一个配置类,代码如下所示:
@Configuration
public class AsyncConfig {
@Bean
public TaskExecutor taskExecutor() {
ThreadPoolTaskExecutor executor =
new ThreadPoolTaskExecutor();
executor.setCorePoolSize(5);
// 设置核心线程数
executor.setMaxPoolSize(10);
// 设置最大线程数
executor.setQueueCapacity(20);
// 设置队列容量
executor.setKeepAliveSeconds(60);
// 设置线程活跃时间(秒)
executor.setThreadNamePrefix("user-rpt-");
// 设置默认线程名称
executor.setRejectedExecutionHandler(
new ThreadPoolExecutor.CallerRunsPolicy()); // 设置拒绝策略
executor.setWaitForTasksToCompleteOnShutdown(true);
// 等待所有任务结束后再关闭线程池
return executor;
}
}
转载于:https://www.cnblogs.com/xsbx/p/10577409.html