栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

springboot中@Async注解使用备注

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

springboot中@Async注解使用备注

参考链接
https://mp.weixin.qq.com/s/SdxnKw94H6V_UBD9oe6DGQ
https://mp.weixin.qq.com/s/yvbxfwgNCVhrQUH5e3be3Q

@Configuration
@EnableAsync
public class AsyncExecutorConfig implements AsyncConfigurer {

    public Logger logger = LoggerFactory.getLogger(getClass());

    private static int corePoolSize = 5;

    private static int maxPoolSize = 10;

    private static int queueCapacity = 100;

    private static int keepAliveSeconds = 300;

    private static String threadNamePrefix = "async-job-thread-";


    @Bean("jobExecutor")
    public TaskExecutor jobExecutor() {
        ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
        // 设置核心线程数
        executor.setCorePoolSize(corePoolSize);
        // 设置最大线程数
        executor.setMaxPoolSize(maxPoolSize);
        // 设置队列容量
        executor.setQueueCapacity(queueCapacity);
        // 设置线程活跃时间(秒)
        executor.setKeepAliveSeconds(keepAliveSeconds);
        // 设置默认线程名称
        executor.setThreadNamePrefix(threadNamePrefix);
        // 设置拒绝策略rejection-policy:当pool已经达到max size的时候,如何处理新任务 CALLER_RUNS:不在新线程中执行任务,而是有调用者所在的线程来执行
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
        // 等待所有任务结束后再关闭线程池
        executor.setWaitForTasksToCompleteOnShutdown(true);
        return executor;
    }

    @Override
    public Executor getAsyncExecutor() {
        return jobExecutor();
    }

    @Override
    public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {
        return handler;
    }

    private AsyncUncaughtExceptionHandler handler = (ex, method, params) -> {
        logger.error("异步任务执行异常:method:" + method.getName(), ex);
    };

}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/750242.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号