Skip to content

Instantly share code, notes, and snippets.

@hyunc
Created September 13, 2015 07:30
Show Gist options
  • Save hyunc/4ff1d520cb3c69ebf9f0 to your computer and use it in GitHub Desktop.
Save hyunc/4ff1d520cb3c69ebf9f0 to your computer and use it in GitHub Desktop.
blog
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
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