Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vehicle-quality-review
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
王飞
vehicle-quality-review
Commits
6fb54773
Commit
6fb54773
authored
Jan 19, 2024
by
王飞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1、修改统一异常处理的返回结果,避免暴露后端敏感信息。
parent
53f70cb0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
GlobalExceptionHandler.java
...ruoyi/framework/web/exception/GlobalExceptionHandler.java
+2
-2
No files found.
ruoyi-framework/src/main/java/com/ruoyi/framework/web/exception/GlobalExceptionHandler.java
View file @
6fb54773
...
@@ -93,7 +93,7 @@ public class GlobalExceptionHandler
...
@@ -93,7 +93,7 @@ public class GlobalExceptionHandler
{
{
String
requestURI
=
request
.
getRequestURI
();
String
requestURI
=
request
.
getRequestURI
();
log
.
error
(
"请求地址'{}',发生未知异常."
,
requestURI
,
e
);
log
.
error
(
"请求地址'{}',发生未知异常."
,
requestURI
,
e
);
return
AjaxResult
.
error
(
e
.
getMessage
());
return
AjaxResult
.
error
(
"发生未知系统异常请与管理员联系"
);
// 修改统一异常返回的信息,避免暴露服务端细节
}
}
/**
/**
...
@@ -104,7 +104,7 @@ public class GlobalExceptionHandler
...
@@ -104,7 +104,7 @@ public class GlobalExceptionHandler
{
{
String
requestURI
=
request
.
getRequestURI
();
String
requestURI
=
request
.
getRequestURI
();
log
.
error
(
"请求地址'{}',发生系统异常."
,
requestURI
,
e
);
log
.
error
(
"请求地址'{}',发生系统异常."
,
requestURI
,
e
);
return
AjaxResult
.
error
(
e
.
getMessage
());
return
AjaxResult
.
error
(
"发生未知系统异常请与管理员联系"
);
// 修改统一异常返回的信息,避免暴露服务端细节
}
}
/**
/**
...
...
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