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

springboot多线程注解 @Async(“asyncExecutor“)

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

springboot多线程注解 @Async(“asyncExecutor“)

文章目录
  • springboot多线程注解 @Async(“asyncExecutor“)

springboot多线程注解 @Async(“asyncExecutor“)

定义线程池 AsyncTaskExecutePool.java

import java.util.concurrent.ThreadPoolExecutor;

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 lombok.extern.slf4j.Slf4j;

@Slf4j  
@Configuration  
@EnableAsync 
public class AsyncTaskExecutePool {
	
	
	  
    private int corePoolSize = 5;  
      
    private int maxPoolSize = 50;  
      
    private int queueCapacity = 2; 
    
    
	@Bean(name = "asyncExecutor")
	public ThreadPoolTaskExecutor asyncExecutor() {
		ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();  
        executor.setCorePoolSize(corePoolSize);    
        executor.setMaxPoolSize(maxPoolSize);    
        executor.setQueueCapacity(queueCapacity);    
        executor.setKeepAliveSeconds(3600);    
        executor.setThreadNamePrefix("asyncExecutor----");    
        executor.setWaitForTasksToCompleteOnShutdown(true);
        // rejection-policy:当pool已经达到max size的时候,如何处理新任务    
        // CALLER_RUNS:不在新线程中执行任务,而是由调用者所在的线程来执行    
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());  
        executor.initialize();    
        log.info("------------------asyncExecutor start -------------------");
        return executor;
	}
	
	@Bean(name = "delAsyncExecutor")
	public ThreadPoolTaskExecutor delAsyncExecutor() {
		ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();  
        executor.setCorePoolSize(corePoolSize);    
        executor.setMaxPoolSize(maxPoolSize);    
        executor.setQueueCapacity(queueCapacity);    
        executor.setKeepAliveSeconds(3600);    
        executor.setThreadNamePrefix("delAsyncExecutor----");    
        executor.setWaitForTasksToCompleteOnShutdown(true);
        // rejection-policy:当pool已经达到max size的时候,如何处理新任务    
        // CALLER_RUNS:不在新线程中执行任务,而是由调用者所在的线程来执行    
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());  
        executor.initialize();    
        log.info("------------------delAsyncExecutor start -------------------");
        return executor;
	}

}

线程执行任务 AsyncTask.java

import java.util.Map;

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


@Component 
@Slf4j
public class AsyncTask {
	@Async("asyncExecutor")
	public void newThread(String key,RedisDao redis)  {
		redis.delete(key);
	}
}

调用多线程

.
.
.

	@Autowired
	private AsyncTask asyncTask;
	@Autowired
	@Qualifier("asyncExecutor")
	private ThreadPoolTaskExecutor executor;

.
.
.

		int activeCount = executor.getActiveCount();
		while (activeCount >= 49) {
			Thread.sleep(10000);
			activeCount = executor.getActiveCount();
			log.info("executor-ActiveCount " +activeCount);
		}
		asyncTask.newThread(key,redisDao);
.
.
.

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

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

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