Skip to content

Instantly share code, notes, and snippets.

@kartikshah
Created July 22, 2016 20:44
Show Gist options
  • Save kartikshah/37e0c37954ee69dd8a990a72c8f3ac52 to your computer and use it in GitHub Desktop.
Save kartikshah/37e0c37954ee69dd8a990a72c8f3ac52 to your computer and use it in GitHub Desktop.
SpringBoot Application Entry point
@SpringBootApplication
public class Application extends SpringBootServletInitializer
{
public static void main(String[] args)
{
SpringApplication.run(Application.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment