Spring Boot 自定义线程池一、自定义线程池1. yml配置# 线程池配置参数
task:
pool:
corePoolSize: 10 # 设置核心线程数
maxPoolSize: 20 # 设置最大线程数
2023-03-11