/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package net.acesinc.util; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; /** * * @author andrewserff */ @SpringBootApplication @EnableEurekaServer @EnableDiscoveryClient public class EurekaDiscoveryServer { public static void main(String[] args) { SpringApplication.run(EurekaDiscoveryServer.class, args); } }