Spring / Spring7 basics Interview questions
What is the purpose of the @Value annotation?
@Value injects a single value - typically read from application properties, environment variables, or a PropertySource - directly into a field, constructor parameter, or setter, using ${...} placeholder syntax. It also supports Spring Expression Language (SpEL) for simple computed defaults.
@Component public class MailConfig { @Value("${mail.retry.count:3}") private int retryCount; }
In the example above, if mail.retry.count isn't defined in application.properties, Spring falls back to the default value 3 after the colon. @Value is convenient for individual settings, but when a whole group of related properties needs binding, @ConfigurationProperties on a dedicated class is the more maintainable choice.
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...
