Oracle Backend for Spring Boot and Microservices
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Eureka Service Discovery

Oracle Backend for Spring Boot and Microservices includes the Spring Boot Eureka service registry, which is an application that stores information about client services or applications. Typically, each Microservice registers with the Eureka server at startup and the Eureka server maintains a list of all active instances of the service, including their ports and IP addresses. This information can be accessed by other services using a well-known key. This allows services to interact with each other without needing to know the other addresses at development or deployment time.

Access the Eureka Web User Interface

To access the Eureka web user interface, process these steps:

  1. Expose the Eureka web user interface using this command:

    kubectl port-forward -n eureka svc/eureka 8761
    
  2. Open the Eureka web user interface URL http://localhost:8761

    Eureka web user interface
    Eureka web user interface

    On the dashboard you will see all the internal services registered with Eureka. If you have deployed the sample application CloudBank or done the LiveLab for Oracle Backend for Spring Boot and Microservices you will see those services.