advancedSpring Boot Core
Your Spring Boot application takes 60+ seconds to start — how do you optimize it?
Profile startup with `--debug` and Spring Boot's built-in startup tracking (ApplicationStartup/Micrometer), then look for slow auto-configurations, excessive component scanning scope, eager bean initialization that could be @Lazy, and heavy @PostConstruct work — often it's a small number of specific beans, not Spring itself, causing most of the delay.
This is a Pro question
Sign in, then upgrade to Pro or Power to unlock this question and the full Interview Prep bank.
Your Spring Boot application takes 60+ seconds to start — how do you optimize it?