Skip to content

Instantly share code, notes, and snippets.

@devendra-nationalwala
Last active June 21, 2022 13:20
Show Gist options
  • Save devendra-nationalwala/ea1412d687240a920cbdcadacba2791c to your computer and use it in GitHub Desktop.
Save devendra-nationalwala/ea1412d687240a920cbdcadacba2791c to your computer and use it in GitHub Desktop.
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication // same as @Configuration @EnableAutoConfiguration @ComponentScan
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment