mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
2878ade980
This change enables a WebFlux HandlerAdapter to handle not only the success scenario when a handler is selected, but also any potential error signal that may occur instead. This makes it possible to extend ControllerAdvice support to exceptions from handler mapping such as a 404, 406, 415, and/or even earlier exceptions from the WebFilter chain. Closes gh-22991