Spring Boot 4 Microservices & REST APIs · 课时

实现 Eureka 服务发现

配置并使用 Netflix Eureka,实现动态服务注册与发现。

第 1 / 3 课12 个步骤

实现 Eureka 服务发现 是 CoddyKit 上的免费 Spring Boot 4 Microservices & REST APIs 课时。 这是第 1 节课,共 3 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Spring Boot 4 Microservices & REST APIs 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Spring Boot 4 Microservices & REST APIs 课程共包含 3 节课。

本课时的部分内容尚未翻译,以英文显示。

Why Service Discovery?

In a microservices architecture, services often need to communicate with each other. But how does one service find another?

  • Dynamic IPs: Service instances can scale up/down, getting new IP addresses.
  • Load Balancing: Multiple instances of a service need to be discovered.
  • Manual Configuration: Hardcoding addresses is fragile and not scalable.

Service discovery solves this by providing a central registry where services register themselves.

Introducing Netflix Eureka

Netflix Eureka is a powerful solution for service discovery in microservices. It's a REST-based service that is primarily used in the AWS cloud for locating services to achieve load balancing and failover of middle-tier services.

Eureka consists of two main components:

  • Eureka Server: The central registry that holds information about all registered services.
  • Eureka Client: A component embedded in each microservice that registers with the Eureka Server.

Setting Up Eureka Server: Dependencies

First, let's set up our Eureka Server. You'll need a new Spring Boot project. Add the following dependency to your pom.xml (for Maven) or build.gradle (for Gradle):

Maven:

<dependency>
  <groupId>org.springframework.cloud</groupId>
  <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>

This starter brings in all necessary components for running a Eureka discovery server.

Configuring Your Eureka Server

Next, configure your Eureka Server in src/main/resources/application.yml. We need to tell the server NOT to register itself with Eureka, as it is the server!

server:
  port: 8761

eureka:
  client:
    register-with-eureka: false
    fetch-registry: false
  instance:
    hostname: localhost
  • server.port: 8761 is the default port for Eureka.
  • register-with-eureka: false prevents the server from registering as a client.
  • fetch-registry: false prevents the server from trying to fetch the registry.

Eureka Server Application Code

Finally, enable the Eureka Server functionality by adding @EnableEurekaServer to your main Spring Boot application class:

Try running this example:

package com.coddykit.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);
  }
}

Accessing the Eureka Dashboard

After running your EurekaServerApplication, you can open your web browser and navigate to http://localhost:8761.

You should see the Eureka dashboard. Initially, it will show no registered service instances. This dashboard is a great way to monitor which services are currently active and registered with your Eureka Server.

Registering Services: The Eureka Client

Now that our Eureka Server is running, let's register a microservice with it. This microservice will act as a Eureka Client.

When a client service starts up, it registers itself with the Eureka Server, providing its network location. Other services can then query the Eureka Server to find the client's location.

Setting Up Eureka Client: Dependencies

Create another Spring Boot project for your client service (e.g., a 'Hello Service'). Add the following dependency to its pom.xml or build.gradle:

Maven:

<dependency>
  <groupId>org.springframework.cloud</groupId>
  <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>

This dependency provides the necessary tools for your service to act as a Eureka client and register with the server.

Configuring Your Eureka Client

Configure your client service in its application.yml. It needs to know where the Eureka Server is located:

server:
  port: 8081 # Or any other unique port

spring:
  application:
    name: my-hello-service # Unique service name

eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8761/eureka
  • spring.application.name is how your service will be identified in Eureka.
  • defaultZone points to your Eureka Server's URL.

Eureka Client Application Code

To enable the client service to register with Eureka, add the @EnableDiscoveryClient annotation to its main class. We'll also add a simple REST endpoint.

Try running this example (ensure Eureka Server is running first!):

package com.coddykit.eurekaclient;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

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

  @GetMapping("/hello")
  public String hello() {
    return "Hello from Eureka Client!";
  }
}

Quick Check

Which annotation should you use on a Spring Boot application's main class to enable it to register as a client with a Eureka Server?

Recap: Eureka Service Discovery

You've taken a big step into microservices by understanding and implementing Eureka Service Discovery!

  • Service Discovery solves the problem of services finding each other dynamically.
  • Eureka Server acts as the central registry.
  • Eureka Clients (your microservices) register with the server.
  • Use @EnableEurekaServer for the server.
  • Use @EnableDiscoveryClient for client services.

This setup allows your microservices to communicate without hardcoding addresses, making your architecture more resilient and scalable.

免费开始

用 AI 导师学习 Java — 免费

在浏览器中编写并运行真实代码,获得全天候 AI 导师的即时帮助,并在网页或应用中继续学习。

课程
24
课程
93

常见问题解答

「实现 Eureka 服务发现」课时是免费的吗?

是的 — 「实现 Eureka 服务发现」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Spring Boot 4 Microservices & REST APIs 课程的其余内容,请升级到 CoddyKit PRO。 Spring Boot 4 Microservices & REST APIs 课程共包含 3 节课。

「实现 Eureka 服务发现」这节课中我会学到什么?

配置并使用 Netflix Eureka,实现动态服务注册与发现。 你通过在浏览器中直接运行的动手代码来练习 Spring Boot 4 Microservices & REST APIs,全天候 AI 导师会在你学习这节课的过程中回答你的问题。

学习 Spring Boot 4 Microservices & REST APIs 需要有经验吗?

无需任何先前经验。CoddyKit 上的 Spring Boot 4 Microservices & REST APIs 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 1 节课,共 3 节。

「实现 Eureka 服务发现」课时需要多长时间?

大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。

我能在这节 Spring Boot 4 Microservices & REST APIs 课中编写并运行代码吗?

能。每节 Spring Boot 4 Microservices & REST APIs 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。

此课程中的所有课时

  1. 实现 Eureka 服务发现
  2. 使用 Ribbon 实现客户端负载均衡
  3. 使用 Spring Cloud Gateway 构建 API 网关
← 返回 Spring Boot 4 Microservices & REST APIs