java线程池批量异步执行方法,获取返回值

文章目录

  • 前言
  • 一、概念介绍
    • 使用线程池的好处
    • 使用线程池有哪些优势
    • CompletableFuture的理解
  • 二、使用步骤
    • 1.配置线程池
    • 2.异步执行方法
  • 总结


前言

接口里面循环调用方法,默认是同步执行,如果方法执行缓慢,循环次数较多,那么这个接口就会较长时间才能返回结果,推荐使用线程池并发异步执行


一、概念介绍

使用线程池的好处

使用线程池最大的原因就是可以根据系统的需求和硬件环境灵活的控制线程的数量,且可以对所有线程进行统一的管理和控制,从而提高系统的运行效率,降低系统运行运行压力;当然了,使用线程池的原因不仅仅只有这些,我们可以从线程池自身的优点上来进一步了解线程池的好处;

使用线程池有哪些优势

1:线程和任务分离,提升线程重用性;
2:控制线程并发数量,降低服务器压力,统一管理所有线程;
3:提升系统响应速度,假如创建线程用的时间为T1,执行任务用的时间为T2,销毁线程用的时间为T3,那么使用线程池就免去了T1和T3的时间;

CompletableFuture的理解

https://www.jianshu.com/p/abfa29c01e1d

二、使用步骤

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.ThreadPoolExecutor;

/**
 * @Description:线程池管理
 * @author: lw
 * @date: 2018年12月17日
 */
@Configuration
@EnableAsync
public class ThreadPoolTaskExecutorConfig {
    //阻塞队列
    private static final int workQueue = 20;
    //线程空闲后的存活时长
    private static final int keepAliveTime = 30;
    //Cpu核数
    private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors();
    //核心线程数量大小
    private static final int corePoolSize = Math.max(2, Math.min(CPU_COUNT - 1, 4));
    //线程池最大容纳线程数
    private static final int maxPoolSize = CPU_COUNT * 2 + 1;

    @Bean("asyncTaskExecutor")
    public ThreadPoolTaskExecutor asyncTaskExecutor() {
        ThreadPoolTaskExecutor threadPoolTaskExecutor = new ThreadPoolTaskExecutor();
        threadPoolTaskExecutor.setThreadNamePrefix("asyncTaskExecutor-");//线程前缀
        threadPoolTaskExecutor.setCorePoolSize(corePoolSize);//核心线程数
        threadPoolTaskExecutor.setMaxPoolSize(maxPoolSize);//最大线程数
        threadPoolTaskExecutor.setQueueCapacity(workQueue);//等待队列
        threadPoolTaskExecutor.setKeepAliveSeconds(keepAliveTime);//线程池维护线程所允许的空闲时间,单位为秒
        threadPoolTaskExecutor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());// 线程池对拒绝任务(无线程可用)的处理策略
        threadPoolTaskExecutor.initialize();
        return threadPoolTaskExecutor;
    }
}

2.异步执行方法

代码如下(示例):

import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import java.util.concurrent.CompletableFuture;

@Autowired
@Qualifier("asyncTaskExecutor")
private ThreadPoolTaskExecutor threadPoolTaskExecutor;

public List<JSONObect> listResult(){
	List<JSONObect> result = new ArrayList<>();
	List<CompletableFuture<HttpResponse>> futures = new ArrayList<>();
	for (String url UrlList) {
		CompletableFuture<HttpResponse> future = CompletableFuture.supplyAsync(() -> {
					//方法处理逻辑
	                HttpResponse res = null;
	                try {
	                    res = HttpRequest.post(url)
	                            .header("Authorization", accessToken)
	                            .body(JSON.toJSONString(new JSONObject()))
	                            .execute();
	                    } catch (Exception e) {
	                        log.error(e.getMessage());
	                        if (res != null) {
	                            log.error(res.toString());
	                        }
	                    }
	                    return res;
	                }, threadPoolTaskExecutor);//指定线程池
	                
	                futures.add(future);
	                
	                try {
	                	//方法处理完成回调
	                    future.thenAccept((HttpResponse res) -> {
	                        if (res.isOk()) {
	                            String body = res.body();
	                            if (JSONValidator.from(body).validate()) {
	                                JSONObject dataJSON = JSON.parseObject(body);
	                                if (dataJSON.containsKey("data")) {
	                                    if (!ObjectUtils.isEmpty(dataJSON.get("data"))) {
	                                        result.add(dataJSON.get("data"));
	                                    }
	                                }
	                            }
	                        }
	                    });
	                } catch (Exception e) {
	                    log.error(e.getMessage());
	                }
	     
	}
	//等待所有线程执行完毕
	CompletableFuture.allOf(futures.toArray(new CompletableFuture[futures.size()]))
	        .whenComplete((v, th) -> {
	            log.info("所有任务执行完成触发");
	        }).join();
     //返回结果
	return result;
}

总结

本内容仅是对配置线程池和指定线程池的异步并发执行
使用的时候一定要先理解再使用,勿在浮沙筑高台

你可能感兴趣的:(JAVA,线程池,并发编程,java)