mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-22 00:29:01 +00:00
Previously, WebFluxAutoConfiguration's WebFluxConfigurer was unordered. This mean that it had lowest precedence so it was not possible for a user to provide their own configurer that was guaranteed to run after the auto-configuration's configurer. This commit updates the auto-configuration to order its configurer at 0. Any unordered user-defined configurer will now run after the auto-configuration's configurer. Closes gh-25302