This commit changes the way two RouterFunctions are composed in WebFlux.fn. Prior to this commit, two were composed with `switchIfEmpty()`, switching from the first to the second route if the first did not provide an element. After this commit, two router functions are compose using `concat`, which results in a smaller stack trace. See gh-24652