使用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),搞了大约一天才把错误解决,心累!

主要错误:

  1. Springcloud和Springboot版本要对应(参考博客
  2. application.yml配置有误(参考博客

  错误就那么几种,都照做了,还是报错。百思不得其解,无奈最后github找了个例子直接跑,可以跑通。对照该例子,一点点排除错误。唉,笨方法也是方法!

本人主要错误可能是:

  1. 第一个自己建的yml文件,第二个正确例程复制粘贴的,不知道为啥识别不一样
    在这里插入图片描述
  2. 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

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐