mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-22 00:29:01 +00:00
Since SPR-15536, WebFlux.fn is now configured with `@EnableWebFlux`, along the annotated controllers. Both `RouterFunction` and Controller instances can now live within the same application and they share the same web infrastructure. This commit removes the custom auto-configuration for `RouterFunction` and relies on `@EnableWebFlux` for that. Closes gh-9165