SpringCloud 教程 | 第一篇: 服务的注册与发现(Eureka)

一、spring cloud简介

spring cloud 为开发人员提供了快速构建分布式系统的一些工具,包括配置管理、服务发现、断路器、路由、微代理、事件总线、全局锁、决策竞选、分布式会话等等。

二、创建服务注册中心 Eureka-Server

在这里,我们需要用的的组件上Spring Cloud Netflix的Eureka ,eureka是一个服务注册和发现模块。

2.1 首先创建一个maven主工程。

2.2 然后创建2个model工程:一个model工程作为服务注册中心,即Eureka Server,另一个作为Eureka Client。

下面以创建server为例子,详细说明创建过程:

右键工程->创建model-> 选择spring initialir 如下图:

Paste_Image.png

下一步->选择cloud discovery->eureka server ,然后一直下一步就行了。

Paste_Image.png

创建完后的工程的pom.xml文件如下:

 

 



   4.0.0

   com.example
   eurekaserver
   0.0.1-SNAPSHOT
   jar

   eurekaserver
   Demo project for Spring Boot

   
      org.springframework.boot
      spring-boot-starter-parent
      2.0.2.RELEASE
       
   

   
      UTF-8
      UTF-8
      1.8
      Finchley.RC2
   

   
      
         org.springframework.cloud
         spring-cloud-starter-netflix-eureka-server
      

      
         org.springframework.boot
         spring-boot-starter-test
         test
      
   

   
      
         
            org.springframework.cloud
            spring-cloud-dependencies
            ${spring-cloud.version}
            pom
            import
         
      
   

   
      
         
            org.springframework.boot
            spring-boot-maven-plugin
         
      
   

   
      
         spring-milestones
         Spring Milestones
         https://repo.spring.io/milestone
         
            false
         
      
   



2.3 启动一个服务注册中心,只需要一个注解@EnableEurekaServer,这个注解需要在springboot工程的启动application类上加:


package com.example.eurekaserver;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@EnableEurekaServer
@SpringBootApplication
public class EurekaserverApplication {

   public static void main(String[] args) {
      SpringApplication.run(EurekaserverApplication.class, args);
   }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

**2.4 **eureka是一个高可用的组件,它没有后端缓存,每一个实例注册之后需要向注册中心发送心跳(因此可以在内存中完成),在默认情况下erureka server也是一个eureka client ,必须要指定一个 server。eureka server的配置文件application.properties:

 
server.port=8761

eureka.instance.hostname=localhost
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

通过eureka.client.registerWithEureka:false和fetchRegistry:false来表明自己是一个eureka server.

网上有很多例子试使用application.yml配置的,分享一个小工具可以直接转换两种配置类型

http://www.toyaml.com/

 

2.5 eureka server 是有界面的,启动工程,打开浏览器访问: 
http://localhost:8761 ,界面如下:

Paste_Image.png

No application available 没有服务被发现 ……^_^ 
因为没有注册服务当然不可能有服务被发现了。

以上就已经完成了Eureka服务端啦,接下来实现客户端调用

 

 

三、创建一个服务提供者 (eureka client)

当client向server注册时,它会提供一些元数据,例如主机和端口,URL,主页等。Eureka server 从每个client实例接收心跳消息。 如果心跳超时,则通常将该实例从注册server中删除。

创建过程同server类似,创建完pom.xml如下:

 


   4.0.0

   com.example
   eureka-client
   0.0.1-SNAPSHOT
   jar

   eureka-client
   Demo project for Spring Boot

   
      org.springframework.boot
      spring-boot-starter-parent
      2.0.2.RELEASE
       
   

   
      UTF-8
      UTF-8
      1.8
      Finchley.BUILD-SNAPSHOT
   

   

      
         org.springframework.boot
         spring-boot-starter-web
      
      
         org.springframework.cloud
         spring-cloud-starter-netflix-eureka-client
      
      
         org.springframework.boot
         spring-boot-starter-test
         test
      
   

   
      
         
            org.springframework.cloud
            spring-cloud-dependencies
            ${spring-cloud.version}
            pom
            import
         
      
   
   
      
         spring-snapshots
         Spring Snapshots
         https://repo.spring.io/snapshot
         
            true
         
      
      
         spring-milestones
         Spring Milestones
         https://repo.spring.io/milestone
         
            false
         
      
   

   
      
         
            org.springframework.boot
            spring-boot-maven-plugin
         
      
   



通过注解@EnableEurekaClient 表明自己是一个eurekaclient.

 

package com.example.eurekaclient;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@EnableEurekaClient
@SpringBootApplication
@RestController
public class EurekaClientApplication {

   public static void main(String[] args) {
      SpringApplication.run(EurekaClientApplication.class, args);
   }

   @Value("${server.port}")
   String port;
   @RequestMapping("/hi")
   public String toString() {
      return "这是端口为:"+port+"实例项目";
   }
}

 

仅仅@EnableEurekaClient是不够的,还需要在配置文件中注明自己的服务注册中心的地址,application配置文件如下:

 

eureka.client.service-url.defaultZoon=http://localhost:8761/eureka
spring.application.name=service-hi
server.port=8763
#租期更新时间间隔(3)
eureka.instance.leaseRenewalIntervalInSeconds=5
#租期到期时间(默认90秒)
eureka.instance.leaseExpirationDurationInSeconds=5
------------------------------------------------------华丽的分割线-----------------------------------------------------------------
eureka.client.service-url.defaultZoon=http://localhost:8761/eureka
spring.application.name=service-hi
server.port=8762
#租期更新时间间隔(3)
eureka.instance.leaseRenewalIntervalInSeconds=5
#租期到期时间(默认90秒)
eureka.instance.leaseExpirationDurationInSeconds=5
 

为了方便后面feign功能的集群测试,这里采用了同一个项目,同时启动两个端口的方式,分别是8762,8763

配置方式可参考如下链接:https://www.jb51.net/article/141422.htm

需要指明spring.application.name,这个很重要,这在以后的服务与服务之间相互调用一般都是根据这个name 。 

启动工程,打开http://localhost:8761 ,即eureka server 的网址:

SpringCloud 教程 | 第一篇: 服务的注册与发现(Eureka)_第1张图片

 

你会发现一个服务已经注册在服务中了,服务名为SERVICE-HI ,端口为7862,8763

这时打开 http://localhost:8762/hi ,http://localhost:8762/hi 你会在浏览器上看到 :

SpringCloud 教程 | 第一篇: 服务的注册与发现(Eureka)_第2张图片

 

 

你可能感兴趣的:(Spring,Cloud学习,Spring,Cloud,Eureka)