创建多个线程池对象
问题背景
项目需要多个线程池执行并行任务
创建线程池对象方法
public ThreadPoolTaskExecutor creatThreadPool() {
ThreadPoolTaskExecutor asyncServiceExecutor = null;
try {
asyncServiceExecutor = new ThreadPoolTaskExecutor();
// 线程池维护线程的最少数量
asyncServiceExecutor.setCorePoolSize(200);
// 线程池维护线程的最大数量
asyncServiceExecutor.setMaxPoolSize(400);
// 线程池所使用的缓冲队列
asyncServiceExecutor.setQueueCapacity(500);
asyncServiceExecutor.setThreadNamePrefix("Thread-");
//调用者执行
// asyncServiceExecutor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
asyncServiceExecutor.setRejectedExecutionHandler(new ThreadPoolExecutor.DiscardPolicy());
// 线程全部结束才关闭线程池
asyncServiceExecutor.setWaitForTasksToCompleteOnShutdown(true);
// 如果超过60s还没有销毁就强制销毁,以确保应用最后能够被关闭,而不是阻塞住
asyncServiceExecutor.setAwaitTerminationSeconds(60);
asyncServiceExecutor.initialize();
} catch (Exception e) {
log.error("Create ThreadPoolTaskExecutor failed", e);
}
return asyncServiceExecutor;
}
总结
如果需要多个线程池运行多个任务,可以多次创建线程池对象
作为程序员第 120 篇文章,每次写一句歌词记录一下,看看人生有几首歌的时间,wahahaha …
Lyric: 闭上眼睛还能看见
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/110755.html