Springboot异步任务线程池

1. 启动类添加@EnableAsync注解
package com.gblfy;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableAsync;

@EnableAsync
@SpringBootApplication
public class JavaEscapeApplication {

    public static void main(String[] args) {
        SpringApplication.run(JavaEscapeApplication.class, args);
    }

}
2. 异步方法添加@Async注解
package com.gblfy.async_task;

import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.AsyncResult;
import org.springframework.stereotype.Service;

import java.util.concurrent.Future;

@Slf4j
@Service
public class AsyncService {

    @Async
    public void asyncProcess01() throws Exception {
        log.info("AsyncService Start to asyncProcess01 ->{}", Thread.currentThread().getName());
        Thread.sleep(2000);
        log.info("AsyncService Start to asyncProcess01 ->{}", Thread.currentThread().getName());
    }

    @Async
    public Future<String> asyncProcess02() throws Exception {
        log.info("AsyncService Start to asyncProcess02->{}", Thread.currentThread().getName());
        Thread.sleep(2000);
        log.info("AsyncService Done to asyncProcess02->{}", Thread.currentThread().getName());
        return new AsyncResult<>("imooc");
    }

    @Async
    public void asyncProcess03()  {
        log.info("AsyncService Start to asyncProcess03->{}", Thread.currentThread().getName());
        throw new RuntimeException("throw exception asyncProcess03");
    }
}

3. 自定义线程池以及线程池异常策略
package com.gblfy.async_task;

import lombok.extern.slf4j.Slf4j;
import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.AsyncConfigurer;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;

import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.concurrent.Executor;
import java.util.concurrent.ThreadPoolExecutor;

/**
 * 自定义异步任务线程池
 */
@Slf4j
@Configuration
public class AsyncTaskConfig implements AsyncConfigurer {
    @Override
    public Executor getAsyncExecutor() {

        ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
        executor.setThreadNamePrefix("cmiip-");
        executor.setCorePoolSize(15);
        executor.setMaxPoolSize(20);
        executor.setKeepAliveSeconds(5);
        executor.setQueueCapacity(100);
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.AbortPolicy());

        executor.setWaitForTasksToCompleteOnShutdown(true);
        executor.setAwaitTerminationSeconds(60);
        executor.initialize();
        return executor;
    }

    @Override
    public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {
        return new AsyncUncaughtExceptionHandler() {
            @Override
            public void handleUncaughtException(Throwable ex, Method method, Object... params) {
                //                报警邮件,发短信等等
                log.error("async task some Error: {} ,{} , {}", ex.getMessage(),
                        method.getDeclaringClass().getName() + "." + method.getName(),
                        Arrays.toString(params));
            }
        };
    }
}

测试

package com.gblfy.async_task;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;

@Slf4j
@SpringBootTest
class AsyncServiceTest {


    @Autowired
    private AsyncService asyncService;

    @Test
     void contextLoads() throws Exception {
//        asyncService.asyncProcess01();
        Future<String> future= asyncService.asyncProcess02();
        log.info("Async Process02 return :->{}", future.get(1, TimeUnit.SECONDS));
    }

    @Test
    void contextLoads2() throws Exception {
         asyncService.asyncProcess03();
         Thread.sleep(3000);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

gblfy

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值