Spring Boot - Spring Annotations
Given this code snippet, what will be the output when running the Spring Boot application?
@SpringBootApplication
public class DemoApp {
public static void main(String[] args) {
System.out.println("Starting app...");
SpringApplication.run(DemoApp.class, args);
}
}