Skip to content

Instantly share code, notes, and snippets.

@melardev
Created February 21, 2019 13:54
Show Gist options
  • Save melardev/b323384c85fa07e4064b86418e169ae1 to your computer and use it in GitHub Desktop.
Save melardev/b323384c85fa07e4064b86418e169ae1 to your computer and use it in GitHub Desktop.
Spring Cloud Rest App
package com.melardev.cloud.rest;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@SpringBootApplication
@EnableDiscoveryClient
public class RestApplication {
public static void main(String[] args) {
SpringApplication.run(RestApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment