From 367ec79401e94af5b74a698f39c3e99b747b2d75 Mon Sep 17 00:00:00 2001 From: wanghanlin <1533525126@qq.com> Date: Wed, 2 Sep 2026 09:57:34 +0800 Subject: [PATCH] =?UTF-8?q?fix(document):=20=E4=BF=AE=E5=A4=8D=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=A4=B9=E4=B8=8A=E4=BC=A0=E8=BF=9E=E6=8E=A5=E6=B1=A0?= =?UTF-8?q?=E8=80=97=E5=B0=BD=E4=B8=8E=E7=9B=AE=E5=BD=95=E6=A0=91=E7=8B=AC?= =?UTF-8?q?=E7=AB=8B=E6=BB=9A=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除 DocumentProcessingService 异步方法上的跨方法事务,AI 关键词提取/向量化期间不再占用数据库连接,避免文件夹批量上传时连接池被占满超时 - 新增有界 documentExecutor 线程池,替代默认无界 SimpleAsyncTaskExecutor,防线程爆炸与大模型限流 - 文档列表页目录树与列表改为左右独立滚动 --- frontend/src/views/DocList.vue | 12 ++++++++---- .../supportbot/config/AsyncExecutorConfig.java | 18 ++++++++++++++++++ .../service/DocumentProcessingService.java | 11 ++++------- 3 files changed, 30 insertions(+), 11 deletions(-) diff --git a/frontend/src/views/DocList.vue b/frontend/src/views/DocList.vue index eb231c5..2448e46 100644 --- a/frontend/src/views/DocList.vue +++ b/frontend/src/views/DocList.vue @@ -1,5 +1,5 @@