注解篇
@EnableEurekaServer 注解启动一个服务注册中心提供给其他应用进行对话
@EnableDiscoveryClient 激活Eureka中的DiscoveryClient实现
配置篇
application.properties
spring.application.name=eureka-server server.port=1001 eureka.instance.hostname=localhost eureka.client.register-with-eureka=false eureka.client.fetch-registry=false