首页
找靠谱产品
找解决方案
找靠谱公司
找案例
找对的人
专家智库
悬赏任务
SAAS
ToB门户
了解全球最新的ToB事件
论坛
潜水/灌水快乐,沉淀知识,认识更多同行。
ToB圈子
加入IT圈,遇到更多同好之人。
微博
Follow
记录
Doing
博客
Blog
文库
业界最专业的IT文库,上传资料也可以赚钱
下载
分享
Share
排行榜
Ranklist
相册
Album
应用中心
qidao123.com技术社区-IT企服评测·应用市场
»
论坛
›
软件与程序人生
›
后端开发
›
Java
›
CountDownLatch和ExecutorService 线程池cachedThreadPo ...
返回列表
发新帖
CountDownLatch和ExecutorService 线程池cachedThreadPool.submit
[复制链接]
发表于 2023-2-27 11:11:48
|
显示全部楼层
|
阅读模式
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要
登录
才可以下载或查看,没有账号?
立即注册
×
CountDownLatch运用
CountDownLatch和ExecutorService 线程池cachedThreadPool.submit
1、CountDownLatch 概念
CountDownLatch可以使一个获多个线程等待其他线程各自执行完毕后再执行。
CountDownLatch 定义了一个计数器,和一个阻塞队列, 当计数器的值递减为0之前,阻塞队列里面的线程处于挂起状态,当计数器递减到0时会唤醒阻塞队列所有线程,这里的计数器是一个标志,可以表示一个任务一个线程,也可以表示一个倒计时器,
CountDownLatch可以解决那些一个或者多个线程在执行之前必须依赖于某些必要的前提业务先执行的场景。
点击查看
代码
public void studentListInit(StartPlanMajorDto startPlanMajorDto) {
// TODO:2023-2-27 只加在读和复学的
List<StudentStatusVo> studentStatusVos = startPlanMajorMapper.selectStudentList(startPlanMajorDto);
List<String> classIdList = startPlanMajorMapper.selectClassIdList(startPlanMajorDto);
List<TeachingClassVo> teachingClassVos = startPlanMajorMapper.selectTeachingClassBySemesterId(startPlanMajorDto.getSemesterId());
ExecutorService cachedThreadPool = Executors.newFixedThreadPool(classIdList.size());
CountDownLatch latch = new CountDownLatch(classIdList.size());
// 遍历教学班中的行政班,将对应行政班的学生添加到选课名单表中
for(String classId : classIdList){
cachedThreadPool.submit(() -> {
List<CourseSelectionListEntity> courseSelectionListEntities = new ArrayList<>();
List<TeachingClassVo> filterList = teachingClassVos.stream().filter(item -> item.getManagementClassId().contains(classId)).collect(Collectors.toList());
for(TeachingClassVo teachingClassVo : filterList){
// 找出这个行政班级中的学生ID数组
List<String> studentIdList = studentStatusVos.stream().filter(item -> item.getStudentClass().equals(classId))
.map(item -> item.getStudentId()).collect(Collectors.toList());
for(String studentId : studentIdList){
CourseSelectionListEntity courseSelectionListEntity = new CourseSelectionListEntity();
courseSelectionListEntity.setCourseSelectionListId(uuIDStringGenerator.nextUUID());
courseSelectionListEntity.setPreSetSign("1");
courseSelectionListEntity.setSemesterId(teachingClassVo.getSemesterId());
courseSelectionListEntity.setCourseId(teachingClassVo.getCourseId());
courseSelectionListEntity.setOpenWay(teachingClassVo.getStartPlanMajorOpenSign());
courseSelectionListEntity.setTeachingClassId(teachingClassVo.getTeachingClassId());
courseSelectionListEntity.setTeachingClassTheoryId(teachingClassVo.getTeachingClassTheoryId());
courseSelectionListEntity.setTeachingClassExperimentId(teachingClassVo.getTeachingClassExperimentId());
courseSelectionListEntity.setTeachingClassPracticeId(teachingClassVo.getTeachingClassPracticeId());
courseSelectionListEntity.setStudentId(studentId);
// courseSelectionListEntity.setCreator(AuthorityUtil.getLoginUser().getUserId());
// 该学生如果已经在教学班中了,则不重复添加
int count = startPlanMajorMapper.existsCourseSelection(studentId,teachingClassVo.getTeachingClassId());
if(count <= 0){
courseSelectionListEntities.add(courseSelectionListEntity);
}
}
}
if(courseSelectionListEntities.size() > 0){
startPlanMajorMapper.batchInsert(courseSelectionListEntities);
}
latch.countDown();
});
}
cachedThreadPool.shutdown();
try {
latch.await();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
复制
代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
继续阅读请点击广告
回复
使用道具
举报
返回列表
王國慶
+ 我要发帖
×
登录参与点评抽奖,加入IT实名职场社区
去登录
微信订阅号
微信服务号
微信客服(加群)
H5
小程序
快速回复
返回顶部
返回列表