Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
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
DEMO
spring-boot
Commits
798b3780
Commit
798b3780
authored
Oct 12, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish "Add support for @ResponseStatus in DefaultErrorAttributes"
Closes gh-14744
parent
17919749
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
DefaultErrorAttributes.java
...ework/boot/web/reactive/error/DefaultErrorAttributes.java
+0
-7
No files found.
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/error/DefaultErrorAttributes.java
View file @
798b3780
...
@@ -94,14 +94,11 @@ public class DefaultErrorAttributes implements ErrorAttributes {
...
@@ -94,14 +94,11 @@ public class DefaultErrorAttributes implements ErrorAttributes {
if
(
error
instanceof
ResponseStatusException
)
{
if
(
error
instanceof
ResponseStatusException
)
{
return
((
ResponseStatusException
)
error
).
getStatus
();
return
((
ResponseStatusException
)
error
).
getStatus
();
}
}
ResponseStatus
responseStatus
=
AnnotatedElementUtils
ResponseStatus
responseStatus
=
AnnotatedElementUtils
.
findMergedAnnotation
(
error
.
getClass
(),
ResponseStatus
.
class
);
.
findMergedAnnotation
(
error
.
getClass
(),
ResponseStatus
.
class
);
if
(
responseStatus
!=
null
)
{
if
(
responseStatus
!=
null
)
{
return
responseStatus
.
code
();
return
responseStatus
.
code
();
}
}
return
HttpStatus
.
INTERNAL_SERVER_ERROR
;
return
HttpStatus
.
INTERNAL_SERVER_ERROR
;
}
}
...
@@ -109,18 +106,14 @@ public class DefaultErrorAttributes implements ErrorAttributes {
...
@@ -109,18 +106,14 @@ public class DefaultErrorAttributes implements ErrorAttributes {
if
(
error
instanceof
WebExchangeBindException
)
{
if
(
error
instanceof
WebExchangeBindException
)
{
return
error
.
getMessage
();
return
error
.
getMessage
();
}
}
if
(
error
instanceof
ResponseStatusException
)
{
if
(
error
instanceof
ResponseStatusException
)
{
return
((
ResponseStatusException
)
error
).
getReason
();
return
((
ResponseStatusException
)
error
).
getReason
();
}
}
ResponseStatus
responseStatus
=
AnnotatedElementUtils
ResponseStatus
responseStatus
=
AnnotatedElementUtils
.
findMergedAnnotation
(
error
.
getClass
(),
ResponseStatus
.
class
);
.
findMergedAnnotation
(
error
.
getClass
(),
ResponseStatus
.
class
);
if
(
responseStatus
!=
null
)
{
if
(
responseStatus
!=
null
)
{
return
responseStatus
.
reason
();
return
responseStatus
.
reason
();
}
}
return
error
.
getMessage
();
return
error
.
getMessage
();
}
}
...
...
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