(已解决)Request execution error. endpoint=DefaultEndpoint{ serviceUrl=‘http://localhost:8761/eureka/}
使用SpringCloud中注册Eureka报错报错主要信息:Request execution error. endpoint=DefaultEndpoint{ serviceUrl='http://localhost:8761/eureka/}com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException:
使用SpringCloud中注册Eureka报错
报错主要信息:
Request execution error. endpoint=DefaultEndpoint{ serviceUrl='http://localhost:8761/eureka/}
com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connection refused: connect
Caused by: java.net.ConnectException: Connection refused: connect
参考了很多博客甚至上google(stackflow),搞了大约一天才把错误解决,心累!
主要错误:
错误就那么几种,都照做了,还是报错。百思不得其解,无奈最后github找了个例子直接跑,可以跑通。对照该例子,一点点排除错误。唉,笨方法也是方法!
本人主要错误可能是:
- 第一个自己建的yml文件,第二个正确例程复制粘贴的,不知道为啥识别不一样
- intellij idea配置自己安装的Maven home directory后会自动变为C:/Users/xxx/.m2/wrapper/dists/…
换句话说,每次maven更新pom依赖,都会在c盘自动生成一个maven仓库
解决方法:参考这篇博客
成功界面如下:
补充:
(1)application.yml配置
server:
port: 7001
eureka:
instance:
hostname: 127.0.0.1
client:
register-with-eureka: false #是否将自己注册到eureka中
fetch-registry: false #是否从eureka中获取信息
service-url:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
#defaultZone: http://localhost:1234/eureka/
spring:
application:
name: eureka
(2)访问http://localhost:port/
而不是http://localhost:port/eureka
更多推荐
所有评论(0)