移除webflux依赖

更改调用模式为线程池,取消rabbitMQ队列使用
This commit is contained in:
Luoye_W 2021-07-28 15:54:03 +08:00
parent 8a59009db3
commit eec3cdd4a0

View File

@ -14,7 +14,6 @@ import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct; import javax.annotation.PostConstruct;
import java.time.LocalDateTime;
import java.util.List; import java.util.List;
import java.util.concurrent.*; import java.util.concurrent.*;
@ -37,35 +36,35 @@ public class Start {
IOutlookService outlookService; IOutlookService outlookService;
@Value("${e5.system.threadPool}") @Value("${e5.system.threadPool}")
private int poolSize = 10; Integer poolSize;
private ExecutorService threadPool;
private ExecutorService threadPool = new ThreadPoolExecutor(
//指定了线程池中的线程数量它的数量决定了添加的任务是开辟新的线程去执行还是放到workQueue任务队列中去
poolSize,
//指定了线程池中的最大线程数量这个参数会根据你使用的workQueue任务队列的类型决定线程池会开辟的最大线程数量
poolSize,
//当线程池中空闲线程数量超过corePoolSize时多余的线程会在多长时间内被销毁
0,
//unit:keepAliveTime的单位
TimeUnit.MILLISECONDS,
//任务队列被添加到线程池中但尚未被执行的任务它一般分为直接提交队列有界任务队列无界任务队列优先任务队列几种
new LinkedBlockingQueue<>(poolSize), // 有界队列
//线程工厂用于创建线程一般用默认即可 new CustThreadFactory(),
Executors.defaultThreadFactory(),
//拒绝策略当任务太多来不及处理时如何拒绝任务
new CustRejectedExecutionHandler()
);
@PostConstruct @PostConstruct
public void init() { public void init() {
log.info("清空redis...... "); log.info("清空redis...... ");
redisUtil.delAll(); redisUtil.delAll();
/* log.info("重新添加队列...... "); threadPool = new ThreadPoolExecutor(
Task.sendTaskOutlookMQALL();*/ //指定了线程池中的线程数量它的数量决定了添加的任务是开辟新的线程去执行还是放到workQueue任务队列中去
poolSize,
//指定了线程池中的最大线程数量这个参数会根据你使用的workQueue任务队列的类型决定线程池会开辟的最大线程数量
poolSize,
//当线程池中空闲线程数量超过corePoolSize时多余的线程会在多长时间内被销毁
0,
//unit:keepAliveTime的单位
TimeUnit.MILLISECONDS,
//任务队列被添加到线程池中但尚未被执行的任务它一般分为直接提交队列有界任务队列无界任务队列优先任务队列几种
new LinkedBlockingQueue<>(poolSize), // 有界队列
//线程工厂用于创建线程一般用默认即可 new CustThreadFactory(),
Executors.defaultThreadFactory(),
//拒绝策略当任务太多来不及处理时如何拒绝任务
new CustRejectedExecutionHandler()
);
} }
@Scheduled(cron = "0/10 * * * * ?") @Scheduled(cron = "0 0/1 * * * ? ")
private void distributeTask() { private void distributeTask() {
List<Outlook> runOutlookList = outlookService.findRunOutlookList(); List<Outlook> runOutlookList = outlookService.findRunOutlookList();
CountDownLatch cdl = new CountDownLatch(runOutlookList.size()); CountDownLatch cdl = new CountDownLatch(runOutlookList.size());