springcloud微服务(五)-EurekaServer服务端

一、Eureka概念

Eureka由多个instance(服务实例)组成,这些服务实例可以分为两种:Eureka Server和Eureka Client。为了便于理解,我们将Eureka client再分为Service Provider和Service Consumer。

  • Eureka Server 提供服务注册和发现
  • Service Provider 服务提供方,将自身服务注册到Eureka,从而使服务消费方能够找到
  • Service Consumer服务消费方,从Eureka获取注册服务列表,从而能够消费服务

二、EurekaServer服务端四部曲-建立module

springcloud微服务(五)-EurekaServer服务端_第1张图片

三、EurekaServer服务端四部曲-修改pom

3.1 修改父工程的pom-增加EurekaServer依赖


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

3.2 修改cloud-eureka-server7001子模块的pom


        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-actuator
        

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

    

四、EurekaServer服务端四部曲-修改application.yml

server:
  port: 7001

eureka:
  instance:
    hostname: eureka7001.com #erueka服务端的实例名称
  client:
    register-with-eureka: false #false表示不向注册中心注册自己
    fetch-registry: false #false表示自己就是注册中心,我的职责就是维护服务实例,并不需要去搜索服务
    service-url:
      #设置与eureka server交互的地址查询服务和注册服务都需要依赖这个地址
      defaultZone:
        http://${eureka.instance.hostname}:${server.port}/eureka/

4.1 eureka.instance.hostname 可以在hosts文件中做注册,

路径C:\Windows\System32\drivers\etc

 五、EurekaServer服务端四部曲-创建主启动类

@SpringBootApplication
@EnableEurekaServer
public class EurekaMain7001 {
    public static void main(String[] args)
    {
        SpringApplication.run(EurekaMain7001.class,args);
    }
}

5.1 @EnableEurekaServer注解

激活eureka服务器相关配置

六、测试

springcloud微服务(五)-EurekaServer服务端_第2张图片

因为目前还没有服务微注册上来 ,所以Application显示No instances available

你可能感兴趣的:(微服务,spring,cloud,微服务,eureka)