Spring Cloud构建微服务之服务注册与发现(一)

在上一篇文章中粗略介绍了一下spring cloud 微服务架构,本节来重点介绍一下,如何使用Spring Cloud来搭建微服务的注册与发现模块

Spring Cloud服务治理之Spring Cloud Netflix

Spring Cloud Netflix 是Spring Cloud的子项目之一,主要是针对Netflix公司一系列的开源产品的封装,Spring Cloud封装之后的Netflix,开发者可以通过一些简单的注解快速的在应用中配置常用的模块来实现分布式系统的快速构建。它主要提供了如下模块:服务发现与注册(Eureka),断路器(Hystrix),智能网关(Zuul),客户端负载均衡(Ribbon)等。

下面的案例将演示如何使用Eureka模块来快速构建Spring Cloud 的服务发现与注册模块。

服务注册中心

    1. 创建一个maven工程Services并在pom.xml中引入Spring Cloud依赖。


    4.0.0
    spring-cloud-demos
    services
    1.0-SNAPSHOT
    pom
    
    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                Dalston.SR4
                pom
                import
            
            
                org.springframework.boot
                spring-boot-starter-parent
                1.5.7.RELEASE
            
        
    

  • 2 .创建核心服务注册发现模块core-eureka-service,在Services工程下创建maven工程Module,并在pom.xml中引入Eureka依赖


    
        services
        spring-cloud-demos
        1.0-SNAPSHOT
    
    4.0.0
    spring cloud 案例 微服务注册中心
    spring cloud 案例 微服务注册中心
    core-eureka-service
    jar
    
    
        
            org.springframework.cloud
            spring-cloud-starter-eureka-server
        
    
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    
                        
                            repackage
                        
                    
                
            
        
    

    1. 通过EnableEurekaServer注解来声明该应用为注册中心服务可供其他客户端注册,代码如下:
package com.snow.spring.cloud;

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

@SpringBootApplication
@EnableEurekaServer//声明为服务发现注册中心
public class CoreEurekaServiceApplication {
    public  static void main(String[] args){
        SpringApplication.run(CoreEurekaServiceApplication.class,args);
    }
}

默认情况下该服务注册中心也会将自己注册到注册中心,我们需要修改一下配置文件来修改这些配置。

  • 4.在resource目录下创建application.yml文件,并做如下配置
spring:
  application:
    name: core-eureka-service #该服务唯一标识名称
server:
  port: 8762 #端口号
eureka:
  instance:
    hostname: localhost
    prefer-ip-address: true 
  client:
    register-with-eureka: false  #不将自身注册到注册中心
    fetch-registry: false #  #表示是否从Eureka Server获取注册信息,默认为true。因为这是一个单点的Eureka Server,不需要同步其他的Eureka Server节点的数据,故而设为false。 
    serviceUrl:
     #Eureka Server的访问地址,服务注册和client获取服务注册信息均通过该URL,多个服务注册地址用,隔开
      defaultZone: http://localhost:8762/eureka
  • 5 .此时启用CoreEurekaServiceApplication,工程启动成功后访问:http://localhost:8762/ 出现下图简单的Eureka管理界面
Spring Cloud构建微服务之服务注册与发现(一)_第1张图片
eurekapage.png

目前该注册中心没有注册任何一个服务提供者实例。下面我们开始创建服务提供者。

服务提供者

    1. 在Services工程下创建maven Module 名称 biz-provider1-service,并在pom.xml中加入Eureka依赖


    
        services
        spring-cloud-demos
        1.0-SNAPSHOT
    
    4.0.0
    spring cloud 案例 服务提供者1
    jar
    biz-provider1-service
    
        
            org.springframework.boot
            spring-boot-starter-web
            1.5.7.RELEASE
        
        
            org.springframework.cloud
            spring-cloud-starter-eureka
        
    
    
        UTF-8
        1.8
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    
                        
                            repackage
                        
                    
                
            
        
    

  • 2 创建服务提供者1主类,并通过@EnableDiscoveryClient注解声明该服务为EurekaService服务提供者,该注解能激活Eureka中的DiscoveryClient实现
package com.snow.spring.cloud.sp;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
//import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

/**
 * 第一个微服务提供者
 */
@SpringBootApplication
@EnableDiscoveryClient
//@EnableEurekaClient
public class BizProviderServiceApp {
    public static void main(String[] args){
        SpringApplication.run(BizProviderServiceApp.class,args);
    }
}

在这里推荐使用如果使用@EnableDiscoveryClient注解,也可以使用@EnableEurekaClient注解,但是推荐使用@EnableDiscoveryClient代替@EnableEurekaClient注解,因为@EnableDiscoveryClient是一个高度的抽象, 来自于spring-cloud-commons, 由于Spring Cloud选型是中立的因此抽象出该接口, 当服务注册中心选型改变为Eureka,ZK,Consul时,不需要修改原有代码中的注解。

  • 3 在resource目录下创建bootstrap.yml文件,并配置服务提供者配置
spring:
  application:
    name: biz-provider-service1 #标识服务提供者名称
---
spring:
  profiles: p1 # profile别名,jar包运行时动态指定以实习动态加载配置文件内容
server:
  port: 8801
eureka:
  instance:
    prefer-ip-address: true
  client:
    serviceUrl:
      defaultZone: http://localhost:8762/eureka/ 
---
spring:
  profiles: p2
server:
  port: 8802
eureka:
  instance:
    prefer-ip-address: true
  client:
    serviceUrl:
      defaultZone: http://localhost:8762/eureka/
  • 4 在biz-provider1-service项目下打开终端执行命令打包:
mvn clean package
  • 5 cd 到 target目录下,分别执行命令运行服务提供者,将服务分别运行在8801端口和8802端口上
java -jar biz-provider1-service-1.0-SNAPSHOT.jar --spring.profiles.active=p1
java -jar biz-provider1-service-1.0-SNAPSHOT.jar --spring.profiles.active=p2

访问http://localhost:8762/查看EurekaService控制面板,发现biz-provider1-service已经注册到注册中心。

Spring Cloud构建微服务之服务注册与发现(一)_第2张图片
eureka-server.png
并且注册两个节点。
至此,服务注册与发现服务完成。相关代码请参考:
码市:spring-cloud-demos

你可能感兴趣的:(Spring Cloud构建微服务之服务注册与发现(一))