Spring Boot 配置和使用多线程池的实现
程序员文章站
2023-12-17 21:03:40
某些情况下,我们需要在项目中对多种任务分配不同的线程池进行执行。从而通过监控不同的线程池来控制不同的任务。为了达到这个目的,需要在项目中配置多线程池。
spring bo...
某些情况下,我们需要在项目中对多种任务分配不同的线程池进行执行。从而通过监控不同的线程池来控制不同的任务。为了达到这个目的,需要在项目中配置多线程池。
spring boot 提供了简单高效的线程池配置和使用方案。
配置
首先是配置线程池的bean交给spring 管理:
@configuration public class taskexecutepool { @bean(name ="threadpoola") public threadpooltaskexecutormytaskasyncpool() { threadpooltaskexecutor executor =new threadpooltaskexecutor(); executor.setcorepoolsize(4); executor.setmaxpoolsize(8); executor.setqueuecapacity(100); executor.setkeepaliveseconds(60); executor.setthreadnameprefix("pool-a"); executor.setrejectedexecutionhandler(new threadpoolexecutor.callerrunspolicy()); executor.initialize(); return executor; } @bean(name ="threadpoolb") public threadpooltaskexecutorasyncpoolb() { threadpooltaskexecutor executor =new threadpooltaskexecutor(); executor.setcorepoolsize(2); executor.setmaxpoolsize(4); executor.setqueuecapacity(8); executor.setkeepaliveseconds(60); executor.setthreadnameprefix("pool-b"); //当任务数量超过maxpoolsize和queuecapacity时使用的策略,该策略是又调用任务的线程执行 executor.setrejectedexecutionhandler(new threadpoolexecutor.callerrunspolicy()); executor.initialize(); return executor; } }
使用
使用线程只需要在执行方法上加上注释,同时该方法的类必须被定义为bean,交由spring管理。
可以在类上使用注解@component、@service等
@async(value="threadpoola") public void taska(){ ... }
查看线程活跃数:
@autowired private threadpooltaskexecutor threadpoola;//变量名称为定义的线程池bean定义的name属性名。 public void checkavtivethreadnum() { int num = threadpoola.getactivecount(); }
当然还有其他一些方法,这里不再举例。
线程池各属性理解:
corepoolsize:表示线程池核心线程,正常情况下开启的线程数量。
queuecapacity:当核心线程都在跑任务,还有多余的任务会存到此处。
maxpoolsize:如果queuecapacity存满了,还有任务就会启动更多的线程,直到线程数达到maxpoolsize。如果还有任务,则根据拒绝策略进行处理。
拒绝策略有多种:
- 由任务调用线程执行
- 抛异常
- 多余的直接抛弃
- 根据fifo(先进先出)抛弃队列里任务
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Spring Boot 配置和使用多线程池的实现
-
spring boot使用sharding jdbc的配置方式
-
Spring Boot使用过滤器和拦截器分别实现REST接口简易安全认证示例代码详解
-
Spring Boot使用profile如何配置不同环境的配置文件
-
Spring Properties的使用和配置方法
-
Spring boot中@Conditional和spring boot的自动配置实例详解
-
spring boot使用自定义配置的线程池执行Async异步任务
-
详解Spring Boot下Druid连接池的使用配置分析
-
SpringBoot入坑笔记之spring-boot-starter-web 配置文件的使用
-
基于Spring Boot不同的环境使用不同的配置方法