Last active
October 7, 2018 20:41
-
-
Save DouglasOliveira10/7dc0511acd4f7454b94bdb3414489879 to your computer and use it in GitHub Desktop.
Classe que contem o método main que inicializa os projetos Spring Boot
This file contains hidden or 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 { | |
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