当前位置:   article > 正文

eureka-server_eureka jar包下载

eureka jar包下载

githubhttps://github.com/Maple521/springcloud/tree/master/eureka-server

创建一个基础的springboot工程

我的pom文件是

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>1.3.7.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.maple</groupId>
  12. <artifactId>eureka-server</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>eureka-server</name>
  15. <description>Demo project for Eureka Server</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <spring-cloud.version>Brixton.SR5</spring-cloud.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.cloud</groupId>
  23. <artifactId>spring-cloud-starter-eureka-server</artifactId>
  24. </dependency>
  25. </dependencies>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-dependencies</artifactId>
  31. <version>${spring-cloud.version}</version>
  32. <type>pom</type>
  33. <scope>import</scope>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>

等待其下载好jar包,然后通过 @EnableEurekaServer注解启动一个服务注册中心提供给其他应用进行对话。

  1. package com.maple.eurekaserver;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
  5. @EnableEurekaServer
  6. @SpringBootApplication
  7. public class EurekaServerApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(EurekaServerApplication.class, args);
  10. }
  11. }

在默认设置下,该服务注册中心也会将自己作为客户端来尝试注册它自己,所以我们要禁用它的客户端注册行为,只需在application.properties中增加如下配置:

  1. server.port=1111
  2. eureka.instance.hostname=localhost
  3. eureka.client.register-with-eureka=false
  4. eureka.client.fetch-registry=false
  5. eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/
eureka.client.register-with-eureka:由于该应用为注册中心,所以设置为false,代表不向注册中心注册自己。eureka.client.fetch-registry:由于注册中心的职责就是维护服务实例,它并不需要去检索服务,所以也设置为false。

在完成了上面的配置后,启动应用并访问 http://localhost:1111/。可以看到如下图所示的Eureka信息面板,其中

Instances currently registered with Eureka栏为空,说明该注册中心还没有注册任何服务。

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