Skip to content

Instantly share code, notes, and snippets.

@chathurangat
Created March 16, 2018 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chathurangat/d55386f523af4d4f7fe5f82969850f28 to your computer and use it in GitHub Desktop.
Save chathurangat/d55386f523af4d4f7fe5f82969850f28 to your computer and use it in GitHub Desktop.
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@EnableDiscoveryClient
@SpringBootApplication
public class StudentServiceApplication {
public static void main(String[] args) {
SpringApplication.run(StudentServiceApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment