SpringBoot線程池ThreadPoolExecutor

SpringBoot線程池ThreadPoolExecutor

SpringBoot框架@Async注解文章:SpringBoot異步調(diào)用@Async
SpringBoot線程池ThreadPoolTaskExecutor文章:SpringBoot線程池ThreadPoolTaskExecutor

ThreadPoolExecutor是JDK中的JUC中的線程池技術(shù)

SpringBoot線程池ThreadPoolTaskExecutor代碼實(shí)現(xiàn)

service層
  1. 創(chuàng)建一個service層的接口AsyncService,如下:
public interface AsyncService {
    /**
     * 執(zhí)行異步任務(wù)
     * */
    void executeAsync1() throws InterruptedException;

    /**
     * 執(zhí)行異步任務(wù)
     * */
    void executeAsync2() throws InterruptedException;
}
  1. 對應(yīng)的AsyncServiceImpl,實(shí)現(xiàn)如下:
/**
 * 異步線程service
 * @author jeffrey_hjf
 */
@Service
@Log
public class AsyncServiceImpl implements AsyncService {

    @Override
    @Async("asyncExecutor")
    public void executeAsync1() throws InterruptedException {
        System.out.println("MsgServer send A thread name->" + Thread.currentThread().getName());
        Long startTime = System.currentTimeMillis();
        TimeUnit.SECONDS.sleep(2);

        Long endTime = System.currentTimeMillis();
        System.out.println("MsgServer send A 耗時:" + (endTime - startTime));
    }

    @Override
    @Async("asyncExecutor")
    public void executeAsync2() throws InterruptedException {
        System.out.println("MsgServer send B thread name->" + Thread.currentThread().getName());
        Long startTime = System.currentTimeMillis();
        TimeUnit.SECONDS.sleep(2);
        Long endTime = System.currentTimeMillis();
        System.out.println("MsgServer send B耗時:" + (endTime - startTime));
    }
}
線程池配置

創(chuàng)建一個配置類ThreadPoolExecutorConfig拗盒,用來定義如何創(chuàng)建一個ThreadPoolExecutor,要使用@Configuration和@EnableAsync這兩個注解毙替,表示這是個配置類,并且是線程池的配置類践樱,如下所示:

/**
 * @author jeffrey_hjf
 */
@Configuration
public class ThreadPoolExecutorConfig {
    /**
     * 獲得Java虛擬機(jī)可用的處理器個數(shù) + 1
     */
    private static final int THREADS = Runtime.getRuntime().availableProcessors() + 1;

    @Value("${async.executor.thread.core_pool_size}")
    private int corePoolSize = THREADS;
    @Value("${async.executor.thread.max_pool_size}")
    private int maxPoolSize = 2 * THREADS;
    @Value("${async.executor.thread.queue_capacity}")
    private int queueCapacity = 1024;
    @Value("${async.executor.thread.name.prefix}")
    private String namePrefix = "async-service-";

    final ThreadFactory threadFactory = new ThreadFactoryBuilder()
            // -%d不要少
            .setNameFormat(namePrefix + "%d")
            .setDaemon(true)
            .build();

    /**
     *
     * @return
     */
    @Bean("asyncExecutor")
    public Executor asyncExecutor() {
        return new ThreadPoolExecutor(corePoolSize, maxPoolSize,
                5, TimeUnit.SECONDS,
                new LinkedBlockingQueue<>(queueCapacity),
                threadFactory, (r, executor) -> {
                //打印日志,添加監(jiān)控等
                System.out.println("task is rejected!");
        });
    }
}
controller層

創(chuàng)建一個controller為Hello厂画,里面定義一個http接口,做的事情是調(diào)用Service層的服務(wù)拷邢,如下:

/**
 * @ClassName UserController
 * @Author jeffrey_hjf
 * @Description User
 **/

@RestController
@RequestMapping("/api")
@Log
public class UserController {

    @Autowired
    private AsyncService asyncService;

    /**
     * ThreadPoolExecutor線程池
     * @return
     */
    @GetMapping("/executeThreadPoolExecutor")
    public String executeThreadPoolExecutor() throws Exception {
        System.out.println("主線程 name -->" + Thread.currentThread().getName());
        asyncService.executeAsync1();
        asyncService.executeAsync2();
        return "Hello World";
    }
}
執(zhí)行效果

控制臺看見日志如下:

主線程 name -->http-nio-9090-exec-1
MsgServer send A thread name->async-service-0
MsgServer send B thread name->async-service-1
MsgServer send A 耗時:2000
MsgServer send B耗時:2000

如上日志所示袱院,我們可以看到controller的執(zhí)行線程是”nio-8080-exec-1”,這是tomcat的執(zhí)行線程解孙,而service層的日志顯示線程名為“async-service-0”坑填,顯然已經(jīng)在我們配置的線程池中執(zhí)行了,并且每次請求中弛姜,controller的起始和結(jié)束日志都是連續(xù)打印的脐瑰,表明每次請求都快速響應(yīng)了,而耗時的操作都留給線程池中的線程去異步執(zhí)行廷臼;

SpringBoot線程池擴(kuò)展ThreadPoolExecutor代碼實(shí)現(xiàn)

雖然我們已經(jīng)用上了線程池苍在,但是還不清楚線程池當(dāng)時的情況绝页,有多少線程在執(zhí)行,多少在隊列中等待呢寂恬?這里我創(chuàng)建了一個ThreadPoolTaskExecutor的子類续誉,改寫的方法:beforeExecute、afterExecute初肉、terminated酷鸦。這些方法可以添加日志、計時牙咏、監(jiān)控或統(tǒng)計信息收集等功能臼隔。

擴(kuò)展ThreadPoolExecutor類
public class ThreadPoolExecutorExtend extends ThreadPoolExecutor {
    private final ThreadLocal startTime = new ThreadLocal();
    private final AtomicLong numTasks = new AtomicLong();
    private final AtomicLong totalTime = new AtomicLong();

    public ThreadPoolExecutorExtend(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) {
        super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue);
    }

    public ThreadPoolExecutorExtend(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) {
        super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory);
    }

    public ThreadPoolExecutorExtend(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) {
        super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, handler);
    }

    public ThreadPoolExecutorExtend(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) {
        super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory, handler);
    }

    @Override
    protected void afterExecute(Runnable r, Throwable t) {
        try{
            long endTime = System.currentTimeMillis();
            long useTime = endTime - (long)startTime.get();
            numTasks.incrementAndGet();
            totalTime.addAndGet(useTime);
            System.out.println("afterExecute " + r);
        }finally{
            super.afterExecute(r, t);
        }
    }

    @Override
    protected void beforeExecute(Thread t, Runnable r) {
        super.beforeExecute(t, r);
        System.out.println("beforeExecute " + r);
        startTime.set(System.currentTimeMillis());
    }

    @Override
    protected void terminated() {
        try{
            System.out.println("terminated avg time " + totalTime.get()  + " " + numTasks.get());
        }finally{
            super.terminated();
        }
    }
}
修改ThreadPoolExecutorConfig配置類

修改ThreadPoolExecutorConfig.java的asyncExecutorExtend方法,將new ThreadPoolExecutor改為new ThreadPoolExecutorExtend妄壶,如下所示:

 @Bean("asyncExecutorExtend")
    public Executor asyncExecutorExtend() {
        return new ThreadPoolExecutorExtend(corePoolSize, maxPoolSize,
                5, TimeUnit.SECONDS,
                new LinkedBlockingQueue<>(queueCapacity),
                threadFactory, (r, executor) -> {
            //打印日志,添加監(jiān)控等
            System.out.println("task is rejected!");
        });
    }
執(zhí)行效果

日志如下:

主線程 name -->http-nio-9090-exec-1
beforeExecute java.util.concurrent.FutureTask@372c5560
MsgServer send A thread name->async-service-0
MsgServer send A 耗時:2000
afterExecute java.util.concurrent.FutureTask@372c5560

SpringBoot框架@Async注解文章:SpringBoot異步調(diào)用@Async
SpringBoot線程池ThreadPoolTaskExecutor文章:SpringBoot線程池ThreadPoolTaskExecutor

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末摔握,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子丁寄,更是在濱河造成了極大的恐慌氨淌,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,123評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件伊磺,死亡現(xiàn)場離奇詭異盛正,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)屑埋,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評論 2 384
  • 文/潘曉璐 我一進(jìn)店門蛮艰,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人雀彼,你說我怎么就攤上這事〖垂眩” “怎么了徊哑?”我有些...
    開封第一講書人閱讀 156,723評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長聪富。 經(jīng)常有香客問我莺丑,道長,這世上最難降的妖魔是什么墩蔓? 我笑而不...
    開封第一講書人閱讀 56,357評論 1 283
  • 正文 為了忘掉前任梢莽,我火速辦了婚禮,結(jié)果婚禮上奸披,老公的妹妹穿的比我還像新娘昏名。我一直安慰自己,他們只是感情好阵面,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,412評論 5 384
  • 文/花漫 我一把揭開白布轻局。 她就那樣靜靜地躺著洪鸭,像睡著了一般。 火紅的嫁衣襯著肌膚如雪仑扑。 梳的紋絲不亂的頭發(fā)上览爵,一...
    開封第一講書人閱讀 49,760評論 1 289
  • 那天,我揣著相機(jī)與錄音镇饮,去河邊找鬼蜓竹。 笑死,一個胖子當(dāng)著我的面吹牛储藐,可吹牛的內(nèi)容都是我干的俱济。 我是一名探鬼主播,決...
    沈念sama閱讀 38,904評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼邑茄,長吁一口氣:“原來是場噩夢啊……” “哼姨蝴!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起肺缕,我...
    開封第一講書人閱讀 37,672評論 0 266
  • 序言:老撾萬榮一對情侶失蹤左医,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后同木,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體浮梢,經(jīng)...
    沈念sama閱讀 44,118評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,456評論 2 325
  • 正文 我和宋清朗相戀三年彤路,在試婚紗的時候發(fā)現(xiàn)自己被綠了秕硝。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,599評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡洲尊,死狀恐怖远豺,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情坞嘀,我是刑警寧澤躯护,帶...
    沈念sama閱讀 34,264評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站丽涩,受9級特大地震影響棺滞,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜矢渊,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,857評論 3 312
  • 文/蒙蒙 一继准、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧矮男,春花似錦移必、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽舞萄。三九已至,卻和暖如春管削,著一層夾襖步出監(jiān)牢的瞬間倒脓,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評論 1 264
  • 我被黑心中介騙來泰國打工含思, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留崎弃,地道東北人。 一個月前我還...
    沈念sama閱讀 46,286評論 2 360
  • 正文 我出身青樓含潘,卻偏偏與公主長得像饲做,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子遏弱,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,465評論 2 348

推薦閱讀更多精彩內(nèi)容