Skip to content

Commit 0610fda

Browse files
committed
Look at ResponseStatusException's cause for binding errors
Fixes gh-41984
1 parent b288730 commit 0610fda

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/error/DefaultErrorAttributes.java

+3
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ else if (error instanceof MethodValidationResult methodValidationResult) {
122122
else if (error instanceof ResponseStatusException responseStatusException) {
123123
errorAttributes.put("message", responseStatusException.getReason());
124124
exception = (responseStatusException.getCause() != null) ? responseStatusException.getCause() : error;
125+
if (exception instanceof BindingResult bindingResult) {
126+
errorAttributes.put("errors", bindingResult.getAllErrors());
127+
}
125128
}
126129
else {
127130
exception = error;

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/reactive/error/DefaultErrorAttributesTests.java

+15
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,21 @@ void extractBindingResultErrors() throws Exception {
250250
assertThat(attributes).containsEntry("errors", bindingResult.getAllErrors());
251251
}
252252

253+
@Test
254+
void extractBindingResultErrorsThatCausedAResponseStatusException() throws Exception {
255+
Method method = getClass().getDeclaredMethod("method", String.class);
256+
MethodParameter stringParam = new MethodParameter(method, 0);
257+
BindingResult bindingResult = new MapBindingResult(Collections.singletonMap("a", "b"), "objectName");
258+
bindingResult.addError(new ObjectError("c", "d"));
259+
Exception ex = new WebExchangeBindException(stringParam, bindingResult);
260+
MockServerHttpRequest request = MockServerHttpRequest.get("/test").build();
261+
Map<String, Object> attributes = this.errorAttributes.getErrorAttributes(
262+
buildServerRequest(request, new ResponseStatusException(HttpStatus.BAD_REQUEST, "Invalid", ex)),
263+
ErrorAttributeOptions.of(Include.MESSAGE, Include.BINDING_ERRORS));
264+
assertThat(attributes.get("message")).isEqualTo("Invalid");
265+
assertThat(attributes).containsEntry("errors", bindingResult.getAllErrors());
266+
}
267+
253268
@Test
254269
void extractMethodValidationResultErrors() throws Exception {
255270
Object target = "test";

0 commit comments

Comments
 (0)