Skip to content

Instantly share code, notes, and snippets.

@DouglasOliveira10
Last active October 7, 2018 20:41
Show Gist options
  • Save DouglasOliveira10/7dc0511acd4f7454b94bdb3414489879 to your computer and use it in GitHub Desktop.
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
@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