SpringBoot
SpringBoot
3. Dependency Management
What is the role of Maven/Gradle in Spring Boot?
They handle dependency management and project build automation.
What is @PathVariable?
It extracts values from the URI template.
7. Security
What is Spring Security?
It provides authentication, authorization, and protection against common attacks.
10. Miscellaneous
What is a Bean in Spring Boot?
A Java object managed by the Spring IoC container.
In Spring Boot, IoC ensures that object creation and dependency management are
centralized in the container, while DI provides a way to supply dependencies.
Together, they make applications more modular, testable, and easier to maintain.