mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-25 19:09:03 +00:00
Correct WebFlux response body method
See gh-17919
This commit is contained in:
committed by
Andy Wilkinson
parent
9ac6485768
commit
6ef6875a60
+1
-1
@@ -171,7 +171,7 @@ public abstract class AbstractErrorWebExceptionHandler implements ErrorWebExcept
|
||||
}
|
||||
Resource resource = resolveResource(viewName);
|
||||
if (resource != null) {
|
||||
return responseBody.bodyValue(BodyInserters.fromResource(resource));
|
||||
return responseBody.body(BodyInserters.fromResource(resource));
|
||||
}
|
||||
return Mono.empty();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user