wuxw7
2017-04-05 3c71e5f3b16d32e84cd9e9699cf1ffa5e2556ddf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.java110;
        import org.springframework.boot.SpringApplication;
        import org.springframework.boot.autoconfigure.SpringBootApplication;
        import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
        import org.springframework.context.annotation.DependsOn;
        import org.springframework.context.annotation.Import;
        import org.springframework.context.annotation.PropertySource;
 
/**
 * Created by wuxw on 2016/12/26.
 */
@SpringBootApplication
@EnableEurekaServer
public class ConfigServerEurekaApplication {
    public static void main(String[] args) {
        SpringApplication.run(ConfigServerEurekaApplication.class, args);
    }
}