mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
7c4f0318bb
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