Spring Boot - Fundamentals
Consider this Spring Boot main class code snippet:
What happens when you run this application?
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args);
}
}What happens when you run this application?
