|
|
|
|
|
by conwaytwitty
483 days ago
|
|
Spring Boot startup time is indeed a problem, especially when scaling horizontally on low cpu nodes. If your environment allows for burst cpu usage until ready to accept traffic, you can start up really fast as spring does so much reflection magic during startup that can't be done during compilation "trivially". You can include hints for runtime configuration from a build, but it doesn't do much to help in really low cpu envs. Then you can of course just do native images, but you lose some of the spring "magic", and might be annoying to refactor towards. |
|