mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
392895e256
Prior to this commit, error handlers in the WebMvc.fn and WebFlux.fn router function builders had to be registered in an unintuitive, reverse order, due to the filter chain composition model used. This commit reverses the error handler order, so that more specific error handlers can come before generic ones. Closes gh-25541