You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm building a larger application using RouterFunctions. What I noticed relative quickly after starting is that I built a configuration class which is depended from nearly all the services in my application. This is definitely something we all want to avoid.
So I reached out to Stéphane Nicoll & Phil Webb and was told that I can easily split the RouterFunctions into several BeanDefinitions and they will be reconciliated for me during startup. (https://twitter.com/snicoll/status/950636452232167425)
This should be reflected in the docs so people don't start building massive Configuration Classes which depend on nearly everything.