Spring / Spring7 basics Interview questions
What is auto-configuration in Spring Boot 4?
Auto-configuration is Spring Boot's mechanism for guessing and applying sensible default configuration based on what's found on the classpath and in the ApplicationContext, so you don't have to wire common beans by hand. If Boot detects an embedded database driver and no DataSource bean, for instance, it configures one automatically.
@SpringBootApplication public class ShopApplication { } // @SpringBootApplication = @Configuration + @ComponentScan + @EnableAutoConfiguration
Each auto-configuration class is heavily guarded with conditional annotations like @ConditionalOnClass and @ConditionalOnMissingBean, so it backs off the moment you define your own equivalent bean. This "convention over configuration" approach is what lets a Spring Boot 4 project start from almost zero manual setup.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
