eureka-client无法启动com.netflix.discovery.DiscoveryClient : Shutting down DiscoveryClient

解决思路:

“Unregistering application unknown with eureka with status DOWN”,eureka无法注册未知应用程序,导致停止。感觉应该是缺少容器,spring-boot-starter-web中含有tomcat。

解决方法:
在pom.xml中加入或者父pom.xml中加入
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>