Created
July 22, 2016 20:44
-
-
Save kartikshah/37e0c37954ee69dd8a990a72c8f3ac52 to your computer and use it in GitHub Desktop.
SpringBoot Application Entry point
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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