异步线程调用

文章介绍了在Springboot应用中实现异步处理的两种方法。一种是直接在方法上添加@Async注解来标记为异步方法。另一种是自定义线程池,通过ThreadPoolTaskExecutor配置核心线程数、最大线程数等参数,并在需要的地方指定使用哪个线程池。
摘要由CSDN通过智能技术生成
第一种方式、使用Springboot集成异步线程调用
  1. 在需要异步执行的方法上加上@Async注解(标明要异步调用)

    @Async  //标明当前方法是一个异步方法
    public void demo() {
    	//代码略
    }
    
  2. 在引导类中使用@EnableAsync注解开启异步调用

    @EnableAsync  //开启异步调用
    @SpringBootApplication
    public class DemoApplication {
        public static void main(String[] args) {
            SpringApplication.run(DemoApplication.class,args);
        }
    
    第二种方式、自定义线程池
    1. 先自定义一个线程池并注入容器中

      import org.springframework.context.annotation.Bean;
      import org.springframework.context.annotation.Configuration;
      import org.springframework.scheduling.annotation.EnableAsync;
      import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
      
      import java.util.concurrent.Executor;
      import java.util.concurrent.ThreadPoolExecutor;
      
      @Configuration
      @EnableAsync//开启异步调用
      public class AsyncConfig {
      
          @Bean("name")//给bean一个名字
          public Executor getExecutor(){
              ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
              executor.setCorePoolSize(Runtime.getRuntime().availableProcessors());
              executor.setMaxPoolSize(50);
              executor.setQueueCapacity(10);
              executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
              executor.setThreadNamePrefix("给一个线程名");//可要可不要
              return executor;
          }
          ......
          //可以定义多个bean
      }
      
    2. 在需要异步执行的方法上加上@Async注解(标明要异步调用)

@Async(value = "name")  //标明当前方法是一个异步方法,通过bean的名字选择用哪个bean
public void demo() {
	//代码略
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值