Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 2.17 KB

README.md

File metadata and controls

41 lines (34 loc) · 2.17 KB

Table of Contents

  1. Getting Started
  2. Spring Projects
    1. Gateway
  3. Third Example
  4. Fourth Example

Getting Started

The following repository shows multiple application types and each application is a specific branch, if you want to check the solution please go to the corresponding branch

Spring Projects

The following list of projects are spring implementations that resolved specific issues.

Gateway

The spring gateway solution will help us to redirect the request that we received from the clients, so in this way we can provide only one single entry point to multiple solutions.

This approach has some advantages:

  • Allow to have one entry point for multiple web services.
  • Gives the possibility to run the load balance logic into this service.
  • Gives the possibility to stablish the security part in one single place.

The following implementation use the spring cloud gateway with a eureka integration to get the cluster members from eureka.