Skip to content

awsprof/spring-boot-consul-service-discovery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot Service Mesh with Consul

This repository contains two simple Spring boot microservices that are linked together using the Hashicorp Consul Service Discovery Service.

Installation

This project depends on my earlier project Service Discovery using Consul for Prometheus

Clone the Consul project first and run:

docker-compose up -d

Access the Consul UI on http://localhost:8500/ui/dc1/services

Once the Consul service comes up, clone this repo and open using an IDE of your choice. I use JetBrains IntelliJ by the way.

There are two Spring Microservices as separate maven projects.

The RestConsumer service exposes an endpoint on

http://localhost:20080/consumer/invoke/{user}

This service invokes another REST Service aptly named the RestService Service ;-)

The producer service exposes another endpoint which can be invoked directly for testing on

http://localhost:20090/producer/sayHello/{name}

However, the main point about this repo is that, the consumer Microservice looks up the producer Microservice using Consul dynamically instead of hardcoding the hostname or port.

Once you start both the Microservices, use the following commands to test the endpoints.

This is the Direct Service Endpoint

curl http://localhost:20090/service/sayHello/Foo

This is the Consumer Endpoint that invokes the Service endpoint by looking up the Service via Consul

curl http://localhost:20080/consumer/invoke/Bar

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

Spring Boot Service Discovery via Hashicorp Consul

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published