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
Whilst profiling startup times for Spring Boot I noticed that ReactiveAdapterRegistry is taking quite some time for a simple application.
For example, if I run ConfigurationClassProcessingTests.simplestPossibleConfig I get a test run time around 0.66 seconds. If I comment out the code from the ReactiveAdapterRegistry constructor it drops to 0.53 seconds.
Perhaps we can make the registry late binding, or unwind some of the existing lambda calls?