Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pms-dispatch-assistant
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
姜耀祖
pms-dispatch-assistant
Commits
4f5b7338
Commit
4f5b7338
authored
Aug 15, 2025
by
赵灿灿
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改提示
parent
f401c154
Pipeline
#22483
passed with stages
in 4 minutes and 52 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
HttpClientPoolConfig.java
...n/langchain/record/conversation/HttpClientPoolConfig.java
+2
-2
ExpertInformationRepository.java
...ucture/expertInformation/ExpertInformationRepository.java
+1
-1
No files found.
src/main/java/com/infoepoch/pms/dispatchassistant/domain/langchain/record/conversation/HttpClientPoolConfig.java
View file @
4f5b7338
...
...
@@ -23,9 +23,9 @@ public class HttpClientPoolConfig {
connManager
.
setValidateAfterInactivity
(
30_000
);
// 30秒检测空闲连接
RequestConfig
sseConfig
=
RequestConfig
.
custom
()
.
setConnectTimeout
(
5000
)
// 连接超时 5
s
.
setConnectTimeout
(
180000
)
// 连接超时 180
s
.
setSocketTimeout
(
0
)
// 无限等待(SSE 必须)
.
setConnectionRequestTimeout
(
5
000
)
// 从池获取连接的超时
.
setConnectionRequestTimeout
(
180
000
)
// 从池获取连接的超时
.
build
();
return
HttpClients
.
custom
()
...
...
src/main/java/com/infoepoch/pms/dispatchassistant/infractructure/expertInformation/ExpertInformationRepository.java
View file @
4f5b7338
...
...
@@ -310,7 +310,7 @@ public class ExpertInformationRepository implements IExpertInformationRepository
"||'-'|| eei_three_classification ||'-'|| eei_four_classification nameCl\n"
+
"from T_EXPERT_CLASSIFICATION)\n"
+
"group by ec_eei_id) on eei_id=ec_eei_id"
);
List
<
Object
>
list
=
OracleUtils
.
combinationSql
(
buffer
,
createCriteriaOutSql
(
criteria
),
pageNum
,
pageSize
,
"
EI_ID
"
);
List
<
Object
>
list
=
OracleUtils
.
combinationSql
(
buffer
,
createCriteriaOutSql
(
criteria
),
pageNum
,
pageSize
,
"
eei_id
"
);
try
{
return
jdbcTemplate
.
queryForList
(
buffer
.
toString
(),
list
.
toArray
());
}
catch
(
Exception
e
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment