Skip to content

Instantly share code, notes, and snippets.

@jaocamp
Created July 21, 2017 18:28
Show Gist options
  • Save jaocamp/2b3b3e21fb5072999c6a36f00c641f61 to your computer and use it in GitHub Desktop.
Save jaocamp/2b3b3e21fb5072999c6a36f00c641f61 to your computer and use it in GitHub Desktop.
Classe principal Delivery Eureka Server
package com.coderef.delivery;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
@EnableEurekaServer
public class DeliveryEurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(DeliveryEurekaServerApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment