摘要: 将博客搬至CSDN 阅读全文
posted @ 2023-05-24 13:47 丨吴丨 阅读(5) 评论(0) 推荐(0) 编辑
摘要: SpringBoot   线程池 ## 1.Java中创建线程池 > 只会介绍java中线程池的核心类ThreadPoolExecutor,其他用法请自行查询 ### 1.1 ThreadPoolExecutor类介绍 > jdk1.8 源码 删减部分内容 ```java package java.util.concurrent; 阅读全文
posted @ 2023-05-24 13:14 丨吴丨 阅读(436) 评论(0) 推荐(0) 编辑
摘要: Java并发编程 优化多任务查询接口 > ##代码展示 ```java @RestController @RequestMapping("/api") public class TestController { @Resource private SourceService sourceService; @Resource privat 阅读全文
posted @ 2023-05-24 10:41 丨吴丨 阅读(83) 评论(0) 推荐(0) 编辑