Skip to content

Instantly share code, notes, and snippets.

View mahadevshindhe's full-sized avatar
🏠
Working from home

mahadevshindhe

🏠
Working from home
View GitHub Profile
// Enable component-scanning and auto-configuration with @SpringBootApplication Annotation
// It combines @Configuration + @ComponentScan + @EnableAutoConfiguration
@SpringBootApplication
public class FooApplication {
public static void main(String[] args) {
// Bootstrap the application
SpringApplication.run(FooApplication.class, args);
}
}