This project contains prototype modules for making a simple product order management system based on micro-service architecture. It based on Spring framework using Spring Boot, Spring Cloud.
This project is currently available under the MIT License.
You can get the sources:
git clone https://github.com/congcoi123/product-order-services.git
These services based on the Netflix operations support system and services token security.
This service provides configurations for all other services (centralized configuration for all services).
See more: https://cloud.spring.io/spring-cloud-config/multi/multi__spring_cloud_config_server.html
This service is responsible for mapping requests from a client to the desired service endpoint. It based on Hystrix.
See more: https://microservices.io/patterns/apigateway.html
This is service discovery for your microservices, where all client applications can register by themselves and other microservices look up the Eureka Server to get independent microservices to get the job complete. It is also known as Discovery Server and it contains all the information about client microservices running on which IP address and port.
See more: https://cloud.spring.io/spring-cloud-netflix/multi/multi_spring-cloud-eureka-server.html
Eureka service URL: https://localhost:8001/eureka
Authorization Server for all other services which grants tokens for the backend resource services. All other secured services must set jwk uri for endpoint implemented on this service.
Monitoring an application's health and metrics helps us manage it better, notice unoptimized behavior and get closer to its performance. This especially holds true when we're developing a system with many microservices, where monitoring each service can prove to be crucial when it comes to maintaining our system.
This directory contains all bussiness services.
Comming soon !
Add or update information about a store's customers, including their addresses and whether they have an active customer account with the store.
Comming soon !
Comming soon !
Comming soon !
Create and update a store's orders. Each order is a record of a complete purchase that includes details of the customer, their cart, and any transactions.
Comming soon !