From 2daa6fc06798661de40455c722cc489ab477c132 Mon Sep 17 00:00:00 2001 From: yang chen Date: Mon, 1 Dec 2025 11:19:45 +0800 Subject: [PATCH] =?UTF-8?q?feat(biz):=20=E5=BC=95=E5=85=A5=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E6=9C=BA=E5=B9=B6=E8=B0=83=E6=95=B4=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E8=B6=85=E6=97=B6=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将SQL查询超时时间和事务超时时间从60秒延长至120秒 - 在biz模块中引入Spring Statemachine依赖,用于管理HTTP客户端的登录状态 - 清理pom.xml文件中的多余空格和格式问题 --- jeelowcode-admin/src/main/resources/application.yaml | 4 ++-- jeelowcode-module/jeelowcode-module-biz/pom.xml | 9 +++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/jeelowcode-admin/src/main/resources/application.yaml b/jeelowcode-admin/src/main/resources/application.yaml index ae17c0e..d336ca8 100644 --- a/jeelowcode-admin/src/main/resources/application.yaml +++ b/jeelowcode-admin/src/main/resources/application.yaml @@ -133,8 +133,8 @@ spring: test-on-return: false socket-timeout: 60000 # socket超时时间,单位:毫秒 connect-timeout: 60000 # 建立数据库连接超时时间,单位:毫秒 - query-timeout: 60 # SQL查询超时时间,单位:秒 - transaction-query-timeout: 60 # 事务超时时间,单位:秒 + query-timeout: 120 # SQL查询超时时间,单位:秒 + transaction-query-timeout: 120 # 事务超时时间,单位:秒 diff --git a/jeelowcode-module/jeelowcode-module-biz/pom.xml b/jeelowcode-module/jeelowcode-module-biz/pom.xml index b5673ca..0206cb1 100644 --- a/jeelowcode-module/jeelowcode-module-biz/pom.xml +++ b/jeelowcode-module/jeelowcode-module-biz/pom.xml @@ -12,7 +12,7 @@ jar ${project.artifactId} ${jeelowcode.version} - 个人业务模块 + 个人业务模块 @@ -48,6 +48,11 @@ 2.0.1 compile - + + + org.springframework.statemachine + spring-statemachine-core + 3.0.1 +