某些情况下,我们需要在项目中对多种任务分配不同的线程池进行执行。从而通过监控不同的线程池来控制不同的任务。为了达到这个目的,需要在项目中配置多线程池。
spring boot 提供了简单高效的线程池配置和使用方案。
配置
首先是配置线程池的bean交给spring 管理:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
@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等
1
2
3
4
|
@async (value= "threadpoola" )
public void taska(){
...
}
|
查看线程活跃数:
1
2
3
4
5
6
|
@autowired
private threadpooltaskexecutor threadpoola; //变量名称为定义的线程池bean定义的name属性名。
public void checkavtivethreadnum() {
int num = threadpoola.getactivecount();
}
|
当然还有其他一些方法,这里不再举例。
线程池各属性理解:
corepoolsize:表示线程池核心线程,正常情况下开启的线程数量。
queuecapacity:当核心线程都在跑任务,还有多余的任务会存到此处。
maxpoolsize:如果queuecapacity存满了,还有任务就会启动更多的线程,直到线程数达到maxpoolsize。如果还有任务,则根据拒绝策略进行处理。
拒绝策略有多种:
- 由任务调用线程执行
- 抛异常
- 多余的直接抛弃
- 根据fifo(先进先出)抛弃队列里任务
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.jianshu.com/p/0170d71dc502