2023年3月22日
摘要: 一、方案一(join) public static void main(String[] args) { final Thread t1 = new Thread(() -> System.out.println("线程1执行")); Thread t2 = new Thread(() -> { t 阅读全文
posted @ 2023-03-22 10:30 云淡风轻博客 阅读(1988) 评论(0) 推荐(0) 编辑
摘要: ava7 提供了ForkJoinPool来支持将一个任务拆分成多个“小任务”并行计算,再把多个“小任务”的结果合并成总的计算结果。 ForkJoinPool是ExecutorService的实现类,因此是一种特殊的线程池。 使用方法:创建了ForkJoinPool实例之后,就可以调用ForkJoin 阅读全文
posted @ 2023-03-22 09:46 云淡风轻博客 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1、概述 knife4j 是springfox-swagger的增强UI实现,为Java来发者在使用swagger的时候,能拥有一份简洁、强大的接口文档体验。 2、使用 1、导入依赖(pom.xml) <dependency> <groupId>com.github.xiaoymin</groupI 阅读全文
posted @ 2023-03-22 08:58 云淡风轻博客 阅读(777) 评论(0) 推荐(0) 编辑