基于Spring Boot 2.0.2.RELEASE 的 Spring Cloud 速成指南 | 二. Spring Cloud 服务注册中心(Eureka Server)

        服务注册中心(Eureka Server)是整个Spring Cloud项目中的核心模块,作为其他模块之间沟通的桥梁

创建服务注册中心

   右键spring-cloud-parent->New->Module->Spring Initializr->Next

基于Spring Boot 2.0.2.RELEASE 的 Spring Cloud 速成指南 | 二. Spring Cloud 服务注册中心(Eureka Server)_第1张图片

然后Next

基于Spring Boot 2.0.2.RELEASE 的 Spring Cloud 速成指南 | 二. Spring Cloud 服务注册中心(Eureka Server)_第2张图片

勾选Eureka Server    Next->Finish 

结构如下:

基于Spring Boot 2.0.2.RELEASE 的 Spring Cloud 速成指南 | 二. Spring Cloud 服务注册中心(Eureka Server)_第3张图片

修改spring-cloud-parent的pom.xml文件

添加

    
        eureka-server
    

修改eureka-server的pom.xml文件

parent改为

    
        com.hongot
        spring-cloud-parent
        0.0.1-SNAPSHOT
    

删掉和spring-cloud-parent的pom.xml文件重复的内容

修改后的pom.xml



    4.0.0

    com.hongot
    eureka-server
    0.0.1-SNAPSHOT
    jar

    eureka-server
    Demo project for Spring Boot

    
        com.hongot
        spring-cloud-parent
        0.0.1-SNAPSHOT
    

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

只需在eureka-server的启动application上加@EnableEurekaServer,运行项目时即可启动服务注册中心

package com.hongot.eurekaserver;

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

@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {

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

把resources下的application.properties改为application.yml

在其中添加如下内容

server:
  port: 8761
eureka:
  instance:
    hostname: localhost
  client:
    register-with-eureka: false
    fetch-registry: false
    service-url: 
        default-zone: http://${eureka.instance.hostname}:${server.port}/eureka/

eureka server在默认的情况下也是一个eureka client

register-with-eureka: 为false意味着自身仅作为服务器,不作为客户端; 

fetch-registry: 为false意味着无需注册自身。

启动eureka-server,打开浏览器访问http://localhost:8761 ,界面如下:

基于Spring Boot 2.0.2.RELEASE 的 Spring Cloud 速成指南 | 二. Spring Cloud 服务注册中心(Eureka Server)_第4张图片

源码下载:点击打开链接

你可能感兴趣的:(基于Spring Boot 2.0.2.RELEASE 的 Spring Cloud 速成指南 | 二. Spring Cloud 服务注册中心(Eureka Server))