Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
Details
Activity
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
openSource
apollo
Commits
39638224
Unverified
Commit
39638224
authored
Jul 07, 2018
by
Jason Song
Committed by
GitHub
Jul 07, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1229 from nianjiang/nian1
更改非法请求的log级别从ERROR到Warn (2)
parents
a204560b
4b0f72bd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
10 deletions
+30
-10
GlobalDefaultExceptionHandler.java
...ollo/common/controller/GlobalDefaultExceptionHandler.java
+30
-10
No files found.
apollo-common/src/main/java/com/ctrip/framework/apollo/common/controller/GlobalDefaultExceptionHandler.java
View file @
39638224
...
...
@@ -8,6 +8,7 @@ import com.ctrip.framework.apollo.tracer.Tracer;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.slf4j.event.Level
;
import
org.springframework.http.HttpHeaders
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
...
...
@@ -49,7 +50,7 @@ public class GlobalDefaultExceptionHandler {
@ExceptionHandler
({
HttpRequestMethodNotSupportedException
.
class
,
HttpMediaTypeException
.
class
})
public
ResponseEntity
<
Map
<
String
,
Object
>>
badRequest
(
HttpServletRequest
request
,
ServletException
ex
)
{
return
handleError
(
request
,
BAD_REQUEST
,
ex
);
return
handleError
(
request
,
BAD_REQUEST
,
ex
,
Level
.
WARN
);
}
@ExceptionHandler
(
HttpStatusCodeException
.
class
)
...
...
@@ -67,23 +68,19 @@ public class GlobalDefaultExceptionHandler {
//处理自定义Exception
@ExceptionHandler
({
AbstractApolloHttpException
.
class
})
public
ResponseEntity
<
Map
<
String
,
Object
>>
badRequest
(
HttpServletRequest
request
,
AbstractApolloHttpException
ex
)
{
return
handleError
(
request
,
ex
);
return
handleError
(
request
,
ex
.
getHttpStatus
(),
ex
,
Level
.
ERROR
);
}
private
ResponseEntity
<
Map
<
String
,
Object
>>
handleError
(
HttpServletRequest
request
,
AbstractApolloHttpException
ex
)
{
return
handleError
(
request
,
ex
.
getHttpStatus
(),
ex
);
HttpStatus
status
,
Throwable
ex
)
{
return
handleError
(
request
,
status
,
ex
,
Level
.
ERROR
);
}
private
ResponseEntity
<
Map
<
String
,
Object
>>
handleError
(
HttpServletRequest
request
,
HttpStatus
status
,
Throwable
ex
)
{
HttpStatus
status
,
Throwable
ex
,
Level
logLevel
)
{
String
message
=
ex
.
getMessage
();
logger
.
error
(
message
,
ex
);
Tracer
.
logError
(
ex
);
printLog
(
message
,
ex
,
logLevel
);
Map
<
String
,
Object
>
errorAttributes
=
new
HashMap
<>();
boolean
errorHandled
=
false
;
...
...
@@ -113,4 +110,27 @@ public class GlobalDefaultExceptionHandler {
return
new
ResponseEntity
<>(
errorAttributes
,
headers
,
status
);
}
//打印日志, 其中logLevel为日志级别: ERROR/WARN/DEBUG/INFO/TRACE
private
void
printLog
(
String
message
,
Throwable
ex
,
Level
logLevel
)
{
switch
(
logLevel
.
toString
())
{
case
"ERROR"
:
logger
.
error
(
message
,
ex
);
break
;
case
"WARN"
:
logger
.
warn
(
message
,
ex
);
break
;
case
"DEBUG"
:
logger
.
debug
(
message
,
ex
);
break
;
case
"INFO"
:
logger
.
info
(
message
,
ex
);
break
;
case
"TRACE"
:
logger
.
trace
(
message
,
ex
);
break
;
}
Tracer
.
logError
(
ex
);
}
}
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