作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么 Spring 的 ThreadPoolTaskExecutor 会继续创建达到 Core Size 值的线程,无论现有线程是否空闲!
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(300);
executor.setMaxPoolSize(500);
executor.setQueueCapacity(5000);
executor.setThreadNamePrefix("AsyncTask-");
executor.initialize();
我一个一个地发出请求,它不断增加线程数,直到达到 300。我的问题是,如果现有线程空闲,为什么它不使用空闲线程?一旦达到核心池大小,无论如何都只能使用池中的线程。
最佳答案
根据 java 文档,Spring 在这方面的工作较少 here
When a new task is submitted in method execute(Runnable), and fewer than corePoolSize threads are running, a new thread is created to handle the request, even if other worker threads are idle. If there are more than corePoolSize but less than maximumPoolSize threads running , a new thread will be created only if the queue is full
关于java - 线程池任务执行器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58061227/
我是一名优秀的程序员,十分优秀!