SpringBoot_Interview_QA
SpringBoot_Interview_QA
1. What is Spring Boot, and how does it differ from the Spring Framework?
Spring Boot is an extension of the Spring Framework that simplifies the development of
Spring-based applications.
Example:
@SpringBootApplication
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args);
}
}