基于Spring Boot 2.0.2.RELEASE 的 Spring Cloud 速成指南 | 二. Spring Cloud 服务注册中心(Eureka Server)
程序员文章站
2022-07-15 09:48:55
...
服务注册中心(Eureka Server)是整个Spring Cloud项目中的核心模块,作为其他模块之间沟通的桥梁
创建服务注册中心
右键spring-cloud-parent->New->Module->Spring Initializr->Next
然后Next
勾选Eureka Server Next->Finish
结构如下:
修改spring-cloud-parent的pom.xml文件
添加
<modules>
<module>eureka-server</module>
</modules>
修改eureka-server的pom.xml文件
parent改为
<parent>
<groupId>com.hongot</groupId>
<artifactId>spring-cloud-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
删掉和spring-cloud-parent的pom.xml文件重复的内容
修改后的pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hongot</groupId>
<artifactId>eureka-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>eureka-server</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>com.hongot</groupId>
<artifactId>spring-cloud-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
</project>
只需在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 ,界面如下:
源码下载:点击打开链接