SpringBoot 自定义TaskExecutor线程池执行异步操作

Posted 张志翔 ̮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot 自定义TaskExecutor线程池执行异步操作相关的知识,希望对你有一定的参考价值。

         最近项目中有使用到通过自定义线程池来执行异步操作的配置,特此记录便于日后查阅。

package com.xxx.iot.message.restapi.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.task.TaskExecutor;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;

import java.util.concurrent.ThreadPoolExecutor;

/**
 * @author zhangzhixiang on 2022/8/10
 */
@Configuration
@EnableAsync
public class ThreadPoolConfig 

    /**
     * 异步任务执行线程池
     *
     * @return
     */
    @Bean
    public TaskExecutor taskExecutor() 
        ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
        // 设置核心线程数
        executor.setCorePoolSize(5);
        // 设置最大线程数
        executor.setMaxPoolSize(50);
        // 设置队列容量
        executor.setQueueCapacity(200);
        // 设置线程活跃时间(秒)
        executor.setKeepAliveSeconds(60);
        // 设置默认线程名称
        executor.setThreadNamePrefix("processor-thread");
        // 设置拒绝策略
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
        // 等待所有任务结束后再关闭线程池
        executor.setWaitForTasksToCompleteOnShutdown(true);
        return executor;
    

         到此SpringBoot 自定义TaskExecutor线程池执行异步操作介绍完成。

以上是关于SpringBoot 自定义TaskExecutor线程池执行异步操作的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot的自定义配置

springboot怎么让自定义的拦截器优先于pagehelper执行

自定义spring boot start

springBoot参数联合校验,自定义分组校验

spring boot可以自定义properties吗

springboot中关于自定义注解校验