spring-boot @Async 的使用、自定义Executor的配置方法

spring-boot @Async 的使用、自定义Executor的配置方法

异步使用场景:发送短信,发送邮件,App消息推送,运维发布任务

基本类

    1. TaskExecutor
      Spring异步线程池的接口类,其实质是java.util.concurrent.Executor

Spring 已经实现的异常线程池:

  1. SimpleAsyncTaskExecutor:不是真的线程池,这个类不重用线程,每次调用都会创建一个新的线程。

  2. SyncTaskExecutor:这个类没有实现异步调用,只是一个同步操作。只适用于不需要多线程的地方

  3. ConcurrentTaskExecutor:Executor的适配类,不推荐使用。如果ThreadPoolTaskExecutor不满足要求时,才用考虑使用这个类

  4. SimpleThreadPoolTaskExecutor:是Quartz的SimpleThreadPool的类。线程池同时被quartz和非quartz使用,才需要使用此类

  5. ThreadPoolTaskExecutor :最常使用,推荐。 其实质是对java.util.concurrent.ThreadPoolExecutor的包装

  6. @Async
    spring对过@Async定义异步任务

异步的方法有3种

  1. 最简单的异步调用,返回值为void
  2. 带参数的异步调用 异步方法可以传入参数
  3. 异常调用返回Future

实现

  1. ExecutorPoolConfig(线程池配置类)
/**
 * 异步使用的线程池
 */
@EnableAsync// 启动异步调用
@Configuration
public class ExecutorPoolConfig {
    @Bean("executor")
    public Executor taskExecutor() {
        ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
        executor.setCorePoolSize(20);
        executor.setMaxPoolSize(50);
        executor.setQueueCapacity(5000);
        executor.setKeepAliveSeconds(120);
        executor.setThreadNamePrefix("task-");
        /**
         * AbortPolicy(默认):丢弃任务,抛出RejectedExecutionException异常
         * DiscardPolicy:也是丢弃任务,但不抛出异常
         * DiscardOldestPolicy:对被拒绝的任务(新来的)不抛弃,而是抛弃队列里面等待最久的一个任务,然后把该拒绝任务加到队列
         * CallerRunsPolicy:重试添加当前被拒绝的任务,他会自动重复调用 execute() 方法,直到成功。
         */
        //executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.AbortPolicy());
        return executor;
    }
}

  1. 异步实现业务(推送es)
/**
 * 异步任务入口
 *
 * @author wuby
 * @date 2021-08-30
 */
@Lazy
@Slf4j
@Component(value = "taskExecutor")
public class TaskExecutor {
    @Resource
    private MqService mqService;

    /**
     * 券状态变更推送ES
     */
    @Async("executor")
    public void asyncSendCouponStatusToEs(String couponNum, String uid, Integer opt, Integer status, String orderId, Integer isSuper, Integer superCpIndex) {
        try {
            mqService.sendCouponStatusChangeToMq(couponNum, uid, opt, status, orderId, isSuper, superCpIndex);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
    }
}
  1. 调用的地方
/**
 * <p>
 * 有赞推送mq
 * </p>
 */
@RestController
@RequestMapping("/mqApi")
@Slf4j
public class MqApi {

    @Autowired
    private TaskExecutor taskExecutor;

    /**
     * @param couponBO
     * @return
     */
    @RequestMapping("/asyncSendCouponStatus")
    public RespDTO asyncSendCouponStatus(@RequestBody ReqDTO<ReceivedCouponBO> couponBO) {
        ReceivedCouponBO reqDTO = couponBO.parseBizParams(ReceivedCouponBO.class); //注解上面进行了参数判断
        log.info("有赞传送的数据为--{}", JacksonUtils.obj2json(reqDTO));
        if (reqDTO == null) {
            return RespDTO.getFail(Constants.RESPONSE_CODE_240001, "券状态变更推送ES失败", Constants.RESPONSE_CODE_240001, "券状态变更推送ES失败");
        }
        if (StringUtils.isEmpty(reqDTO.getCouponAtno())) {
            return RespDTO.getFail(Constants.RESPONSE_CODE_240001, "券编号不能为空", Constants.RESPONSE_CODE_240001, "券编号不能为空");
        }
        if (StringUtils.isEmpty(reqDTO.getUid())) {
            return RespDTO.getFail(Constants.RESPONSE_CODE_240001, "用户id不能为空", Constants.RESPONSE_CODE_240001, "用户id不能为空");
        }
        if (reqDTO.getOpt() == null) {
            return RespDTO.getFail(Constants.RESPONSE_CODE_240001, "操作状态不能为空", Constants.RESPONSE_CODE_240001, "操作状态不能为空");
        }
        if (reqDTO.getStatus() == null) {
            return RespDTO.getFail(Constants.RESPONSE_CODE_240001, "券状态不能为空", Constants.RESPONSE_CODE_240001, "券状态不能为空");
        }
        taskExecutor.asyncSendCouponStatusToEs(reqDTO.getCouponAtno(), reqDTO.getUid(), reqDTO.getOpt(), reqDTO.getStatus(),
                reqDTO.getOrderId(), reqDTO.getIsSuper(), reqDTO.getSuperCpIndex());
        return RespDTO.getSucc();
    }

}

参数说明

线程池参数说明

  1. ‘id’ : 线程的名称的前缀
  2. ‘pool-size’:线程池的大小。支持范围”min-max”和固定值(此时线程池core和max sizes相同)
  3. ‘queue-capacity’ :排队队列长度
    ○ The main idea is that when a task is submitted, the executor will first try to use a free thread if the number of active threads is currently less than the core size.
    ○ If the core size has been reached, then the task will be added to the queue as long as its capacity has not yet been reached.
    ○ Only then, if the queue’s capacity has been reached, will the executor create a new thread beyond the core size.
    ○ If the max size has also been reached, then the executor will reject the task.
    ○ By default, the queue is unbounded, but this is rarely the desired configuration because it can lead to OutOfMemoryErrors if enough tasks are added to that queue while all pool threads are busy.
  4. ‘rejection-policy’: 对拒绝的任务处理策略
    ○ In the default ThreadPoolExecutor.AbortPolicy, the handler throws a runtime RejectedExecutionException upon rejection.
    ○ In ThreadPoolExecutor.CallerRunsPolicy, the thread that invokes execute itself runs the task. This provides a simple feedback control mechanism that will slow down the rate that new tasks are submitted.
    ○ In ThreadPoolExecutor.DiscardPolicy, a task that cannot be executed is simply dropped.
    ○ In ThreadPoolExecutor.DiscardOldestPolicy, if the executor is not shut down, the task at the head of the work queue is dropped, and then execution is retried (which can fail again, causing this to be repeated.)
  5. ‘keep-alive’ : 线程保活时间(单位秒)
    setting determines the time limit (in seconds) for which threads may remain idle before being terminated. If there are more than the core number of threads currently in the pool, after waiting this amount of time without processing a task, excess threads will get terminated. A time value of zero will cause excess threads to terminate immediately after executing a task without remaining follow-up work in the task queue()
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容