mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-20 12:19:16 +00:00
This commit changes the way RouterFunctions registered to the builder are composed in both WebFlux.fn and WebMvc.fn. Prior to this commit, all routes added to the build were composed with `reduce`. After this commit, all routes are stored in a special router function, allowing for more efficient execution and smaller stack traces. Closes gh-24652