无法部署我的第一个 Azure Spring 云应用程序
Unable to deploy my first Azure Spring Cloud application
我正在尝试使用快速入门 运行 Spring 在 Azure Spring 云中启动 https://docs.microsoft.com/en-us/azure/spring-cloud/spring-cloud-quickstart?tabs=IntelliJ&pivots=programming-language-java
我下载了 spring starter 和相关的 jar,但是当它启动时我遇到了一堆错误
Getting all instance registry info from the eureka server
2020-10-08 23:20:47.012 ERROR [,,,] 32573 --- [ main] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error. endpoint=DefaultEndpoint{ serviceUrl='http://localhost:8761/eureka/}
com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connection refused
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:187) ~[jersey-apache-client4-1.19.1.jar:1.19.1]
at com.sun.jersey.api.client.filter.GZIPContentEncodingFilter.handle(GZIPContentEncodingFilter.java:123) ~[jersey-client-1.19.1.jar:1.19.1]
at com.netflix.discovery.EurekaIdentityHeaderFilter.handle(EurekaIdentityHeaderFilter.java:27) ~[eureka-client-1.9.25.jar:1.9.25]
如何阻止这种情况发生,有没有人幸运地使用了 Microsoft Spring 启动快速启动?
您是否尝试在本地 运行 应用程序?如果是这种情况,则此错误是预期的,因为无法从您的开发机器访问由 Azure Spring Cloud 托管的尤里卡服务器。请将应用程序部署到 Azure Spring 云。
我正在尝试使用快速入门 运行 Spring 在 Azure Spring 云中启动 https://docs.microsoft.com/en-us/azure/spring-cloud/spring-cloud-quickstart?tabs=IntelliJ&pivots=programming-language-java
我下载了 spring starter 和相关的 jar,但是当它启动时我遇到了一堆错误
Getting all instance registry info from the eureka server
2020-10-08 23:20:47.012 ERROR [,,,] 32573 --- [ main] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error. endpoint=DefaultEndpoint{ serviceUrl='http://localhost:8761/eureka/}
com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connection refused
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:187) ~[jersey-apache-client4-1.19.1.jar:1.19.1]
at com.sun.jersey.api.client.filter.GZIPContentEncodingFilter.handle(GZIPContentEncodingFilter.java:123) ~[jersey-client-1.19.1.jar:1.19.1]
at com.netflix.discovery.EurekaIdentityHeaderFilter.handle(EurekaIdentityHeaderFilter.java:27) ~[eureka-client-1.9.25.jar:1.9.25]
如何阻止这种情况发生,有没有人幸运地使用了 Microsoft Spring 启动快速启动?
您是否尝试在本地 运行 应用程序?如果是这种情况,则此错误是预期的,因为无法从您的开发机器访问由 Azure Spring Cloud 托管的尤里卡服务器。请将应用程序部署到 Azure Spring 云。