添加联查信息方法

master
陈思豪 2024-09-06 19:34:54 +08:00
parent 69f26c0cb2
commit ddb338240d
1 changed files with 2 additions and 1 deletions

View File

@ -214,8 +214,9 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, TaskInfo> implement
// 启动线程池执行任务 // 启动线程池执行任务
for (int i = 0; i < 10; i++) { // 可以根据需要调整线程池大小 for (int i = 0; i < 10; i++) { // 可以根据需要调整线程池大小
// executor.submit(new Worker(queue)); executor.submit(new Worker(queue));
log.info("运行{}",i); log.info("运行{}",i);
break;
} }
executor.shutdown(); executor.shutdown();