当前位置:   article > 正文

Eureka服务注册_ekaer

ekaer

1:添加配置依赖

  1. <dependencies>
  2. <!-- eureka服务器-->
  3. <dependency>
  4. <groupId>org.springframework.cloud</groupId>
  5. <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  6. </dependency>
  7. </dependencies>

2:添加注解@EnableEurekaServer

3:在application中进行配置(其中第三段是将自己也注册进去,因为自己以后有可能也是一个服务,被别人用到。)

  1. server:
  2. port: 10086 #服务端口
  3. spring:
  4. application:
  5. name: eurekaserver #eureka得服务名称
  6. eureka:
  7. client:
  8. service-url: #eureka得地址信息
  9. defaultZone: http://127.0.0.1:10086/eureka

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/733563
推荐阅读
相关标签
  

闽ICP备14008679号