当前位置:   article > 正文

如何搭建eureka-server_搭建eurekaserver服务

搭建eurekaserver服务
  1. 在Spring Cloud项目的pom文件中添加eureka-server的starter依赖坐标
      1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      3. <modelVersion>4.0.0</modelVersion>
      4. <parent>
      5. <groupId>com.app</groupId>
      6. <artifactId>study-spring-cloud</artifactId>
      7. <version>1.0.0</version>
      8. </parent>
      9. <artifactId>eureka-server</artifactId>
      10. <dependencies>
      11. <!-- eureka-server依赖 -->
      12. <dependency>
      13. <groupId>org.springframework.cloud</groupId>
      14. <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
      15. </dependency>
      16. </dependencies>
      17. <build>
      18. <finalName>app</finalName>
      19. <plugins>
      20. <plugin>
      21. <groupId>org.springframework.boot</groupId>
      22. <artifactId>spring-boot-maven-plugin</artifactId>
      23. </plugin>
      24. </plugins>
      25. </build>
      26. </project>
  2. 编写spring boot启动类,并在启动类上添加注解@EnableEurekaServer
      1. package com.app.eureka;
      2. import org.springframework.boot.SpringApplication;
      3. import org.springframework.boot.autoconfigure.SpringBootApplication;
      4. import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
      5. /**
      6. * 添加Eureka的服务启动类
      7. *
      8. * @author Administrator
      9. */
      10. @SpringBootApplication
      11. @EnableEurekaServer
      12. public class EurekaApplication {
      13. public static void main(String[] args) {
      14. SpringApplication.run(EurekaApplication.class, args);
      15. }
      16. }
  3. 添加并编写application.yml文件
      1. server:
      2. port: 9000
      3. spring:
      4. application:
      5. name: eureka-server
      6. eureka:
      7. client:
      8. service-url:
      9. # 服务端暴露的地址
      10. defaultZone: http://127.0.0.1:9000/eureka
  4. 启动eureka-server服务,启动成功后访问地址Eurekaicon-default.png?t=N7T8http://127.0.0.1:9000/
    1. 看到以下结果则表示已经启动成功
      1. ​​​​​​​
  5. 同时可以看出eureka-server即作为服务的注册中心,同时也将自己的服务注册到eureka-server上面,这是为了进行集群部署的时候需要用到的
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/974684
推荐阅读
相关标签
  

闽ICP备14008679号