Last active
August 29, 2015 14:13
-
-
Save drissamri/19ac28ec2c752ae1b527 to your computer and use it in GitHub Desktop.
Spring Boot application with RestTemplate
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 { | |
private static final int TWO_SECONDS = 2000; | |
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