Spring Cloud(一)服务发现/注册组件Eureka

Spring Cloud简介

Spring Cloud基于Spring Boot,拥有众多快速构建分布式系统的组件。Spring Cloud开发的应用程序非常适合部署在Docker或Paa(Platform-as-a-service 平台服务,云环境提供服务所需的环境,作为开发者无需考虑环境因素,专心构建所需的服务就好);

Eureka简介

Eureka是Spring Cloud Netflix的子组件, 它基于Rest服务,并拥有AWS作为强力支撑,提供服务发现、负载均衡的功能。在Spring Cloud中作为服务注册中心,即Eureka Server,与之对应还存在一个服务提供者Eureka Client;

Eureka架构

未命名文件.jpg

基础架构图阐明了Eureka的三个模块:
1、Eureka Server:提供服务发现的能力,微服务可以将自己的信息注册到Eureka Server中,并且拥有心跳检查的功能,在一段时间未收到某个微服务的心跳则注销该微服务,多个Eureka Server通过相互复制的方式,实现服务注册表中的数据同步;
2、Eureka Client:提供/下线某项服务,缓存服务注册信息,方便于找到某项服务;
3、服务消费者:使用Rest API方式消费服务。
按照上面Eureka的架构图设计,让我们动手实现该架构。

服务注册中心

创建spring boot工程,eureka-server-1(因为等会我们要做eureka-server集群,所以加了个很丑的1),引入如下依赖,我的开发工具用的STS所以选择Spring Starter Project,依赖自动就生成好了。


        1.8
        Finchley.SR1
    

    
        
            org.springframework.cloud
            spring-cloud-starter-eureka-server
            1.4.4.RELEASE
        

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

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

启动类上加@EnableEurekaServer注解,表示这是一个Eureka Server,我们点开这个注解我们可以发现该注解实现了@EnableDiscoveryClient,表明Eureka Server也是一个Eureka Client,这也与架构图表明的Eureka Server通过相互注册的方式来实现集群

@SpringBootApplication
@EnableEurekaServer
public class EurekaServer1Application {

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

}

编写application.yml配置文件

server:
  port: 8888
eureka:
  client:
    register-with-eureka: false
    fetch-registry: false
    service-url:
      defaultZone:  http://localhost:8888/eureka/

需要特别说明的是:

register-with-eureka: false表示是否将自己注册到Eureka Server 上;
fetch-registry: false是否从Eureka Server上获取注册信息;
service-url.default-zone: http://localhost:8888/eureka/ 这个表示与Eureka Server交互的地址;

现在我们可以启动我们的注册中心,访问http://local:8888

image.png

该页面有许多信息(系统信息,常用信息,注册信息,当前实例信息),我们首先最关心的就是注册到Eureka Server的实例,当然现在一个也没有。

服务提供者

pom文件与Eureka相同;
创建配置文件application.yml

spring:
  application:
    name: client-1
server:
  port: 8889
eureka:
  client:
    service-url:
      defaultZone:  http://localhost:8888/eureka/

启动类上加上@EnableEurekaClient注解,其实也可以用@EnableDiscoveryClient,两者区别就是前者只使用于Eureka组件,后者适用于许多服务发现组件例如:Consul。

@SpringBootApplication
@EnableEurekaClient
public class EurekaClientApplication {

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

}

启动服务,回到Eureka Server注册中心界面:

image.png

可以看到该服务已经注册到注册中心,服务名为:Client-1 和咱们配置文件中的一致。

Eureka集群

我们以两个Eureka Server构建集群,修改application.yml文件,如下:
在进行正式工作前,我们要先进行个小操作,打开host文件,添加一下内容:

127.0.0.1       server-1 server-2

修改application.yml文件

spring:
  application:
    name: eureka-server
---
spring:
  profiles: server-1
server:
  port: 8888
eureka:
  instance:
    hostname: server-1
  client:
    service-url:
      defaultZone: http://server-2:8889/eureka
---
spring:
  profiles: server-2
server:
  port: 8889
eureka:
  instance:
    hostname: server-2
  client:
    service-url:
      defaultZone: http://server-2:8888/eureka

首先用---将此配置文件隔成三个文件,其实profiles: server-1,profiles: server-2代表启动的时候我们可以选择不同的配置启动,最后两个eureka sever相互注册,到此构建eureka server 集群已经完成,接下来让我们分别启动这两个注册中心。

image.png

打开注册中心-1可以看见注册中心-2已经注册已经注册上去了。

认证的Eureka-Server

pom添加如下依赖:


            org.springframework.boot
            spring-boot-starter-security

再application.yml中配置用户名和密码

spring:
  profiles: server-1
  security:
    user:
      name: admin
      password: 123456
server:
  port: 8888
eureka:
  instance:
    hostname: server-1
  client:
    register-with-eureka: false
    fetch-registry: false
    service-url:
       defaultZone:  http://admin:123456@server-1:8888/eureka/

由于我们注册的方式为http://........所以我们需要打开httpBasic的认证方式,继而我们添加一个配置类(2.x以上需要添加配置类,否则直接在配置文件中直接配置httpBasic启用就好)

@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter{
    
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.NEVER);
        http.csrf().disable();
        http.authorizeRequests().anyRequest().authenticated().and().httpBasic(); //开启认证
    }

}

这样我们访问注册中心-1中就需要认证。

当然服务提供者也需要修改下配置才能访问我们注册中心,修改服务提供者的application.yml

defaultZone:  http://admin:123456@server-1:8888/eureka/

启动服务提供者,打开注册中心界面我们发现服务已然注册。

image.png

讲到这里注册中心与服务提供者已经构建完毕,下一章节我们将构建消费者,从而实现基于Eureka架构的微服务。

你可能感兴趣的:(Spring Cloud(一)服务发现/注册组件Eureka)