Skip to content

Order management APIs with three main components: exposing RESTful Services: Product, Order and Inventory. The services are integrated together and enjoy smooth communication. The real-world result is: SMOOTH USER EXPERIENCE !!!

Notifications You must be signed in to change notification settings

rishiraj88/order-manager

Repository files navigation

Order Manager (Order Module of E-Commerce Platform)

  • This project essentially showcases that the real-world problems faced by most of the businesses today can be simply attended to with a distributed approach. Such a system is implemented using modern web technologies, knitted with asynchronous and synchronous communications.

  • Some of the technologies used in this project are:

  • Spring Boot 3.4, Java 21

  • Keycloak (OAuth2, OpenID Connect) for User Account management, Authorization and Authentication Reference Doc

  • Modern strategy for Spring Security implementation (as in Spring Boot 3, Spring 6)

  • Use of WebClient and RestClient (Spring Boot 3) and not of FeignClient (Spring Boot 2.7 style)

  • Kafka for asynchronous communication (as in Notification app) across web services using message queues (MQ)

  • Docker-Compose for containerization of individual apps

  • Testcontainers for automated API Testing and Contract Testing, with Rest-Assured

  • Container orchestration, clustering and auto-scaling with Deployment YAML for Kubernetes.

  • Port exposure with Service kind of Kubernetes descriptors

Highlights of technological tools

  • Multi-stage Dockerfile for Product app
  • Declarations of YAML for Kubernetes cluster deployment
  • Gateway implementation as a microservice to connect the backend APIs to external clients

This application has three main business components, implemented as Microservices:

  • Product (Kotlin app, Spring Boot)
  • Order (ready as Java app, Spring Boot; in dev works as Kotlin app, Spring Boot)
  • Inventory (Java app, Spring Boot)

More components, services, config and connectors are there as well-

  • to integrate the three main actors (our "heroes"), and
  • Gateway and User Authentication with OpenID Connect (Keykloak: <./gateway/README.md>)
  • API Documentation with OpenAPI Specification (OAS): Swagger
  • in order to facilitate smooth communication among the services.

And the result is: unmatched and flawless user experience. :)

To view and test-run the web app

When without Deployment

  • to list pods and services
$ kubectl get pods,svc
  • to get the URL of Order app.
$ minikube service om-order-svc --url

When with Deployment

  • to list deployments and services
$ kubectl get deployments,svc
  • to get the URL of Order app.
$ minikube service om-order-svc --url

Similar steps for Product app with Deployment

  • to list deployments and services
$ kubectl get deployments,svc
  • to get the URL of Product app.
$ minikube service om-product-svc --url

Scale the services

kubectl scale deployment om-order-depl --replicas=2
kubectl scale deployment om-product-depl --replicas=2

realm-creation-success-in-keycloak-admin

Documentation is being updated for the year 2025. However, the screenshots of the year 2024 are quite convincing and "in context".

Tech Tools Used for Development

  • Spring Boot, with Spring Web
  • Spring Cloud Config (for service integration)
  • Spring Security (for Authz-n-Authn)
  • Keycloak (for user account management)
  • MongoDB (NoSQL Database)
  • Spring Data MongoDB (for Mongo Repository)
  • MySQL (Relational Database System)
  • Spring Data MySQL (for JPA Repository)
  • Flyway (for Database Migration)
  • Docker-Compose (for containerization)
  • Local container repo registry (registry image from Docker Hub)
  • Swagger (for OpenAPI-based API documentation)
  • Testcontainers (for Test Automation with stubs)
  • Rest-Assured (for Testing and Validation)
  • Lombok (for boilerplate code injection)
  • Spring RestClient (Spring Boot 3.2 offering. It replaces the older option Spring OpenFeign (for inter-service communication))
  • Resilient4j v2 for Fault Tolerance

General Note on Development Style

I enjoy the following approach for inception, enhancement and fortification of projects:

  1. Start in simple, lazy and less structured approach.
  2. Modularise, distribute and containerise various components, guided by relative prioritization.
  3. Look out for fan-out scenarios and go for asynchronous messaging across services accordingly.
  4. Alongside work, in gradual steps, towards making the deliverables (distributables) compact in file size and deploy them in replicas (clusters).

Suggestions and feedback comments from readers are always welcomed with love. Some screenshots from one session on cluster management and orchestration are here:

  • 01-kubectl-pods-created
  • 02-docker-gui-pods
  • 03-replicas-in-replicaset
  • 04-docker-gui-scaled-replicaset
  • 05-kubectl-scaling-replicaset
  • 06-kubectl-deployment-created
  • 07-kubectl-service-created
  • 08-kubectl-other-deployment-created
  • 09-kubectl-experimentation
  • 10-docker-gui-after-cleanup

Modules

  • Product
  • Order
  • Inventory
  • Gateway (with redirection, and OAuth2 with Keycloak and Docker-Compose)
  • More may be added on need basis.

Product Module

This module is for adding, listing, modifying and removing products and product details.

API Base

The product API has its base at "/api/v1/products".

Database Details

MongoDB engine powers the product module. The data store is well expected to be enriched with newer fields very frequently, so NoSQL database technology is used for this. The database is deployed in a Docker container with a persistent volume to hold business data.

Project Setup with Dependencies

The module for Product (Kotlin variant) has been set up with the following dependencies, specified in Spring Init:

  • Spring Web
  • Spring Data MongoDB
  • Testcontainers
  • Rest-Assured
  • Swagger (for OpenAPI-based API documentation)

Spring Boot project dependencies

Testing

Manual Testing

Product

Product module: adding first product for this day Product module: adding second product for this day Product module: listing the available products

Product module: manual testing Product module: manual testing Product module: manual testing

Order

Order module: getting no orders available

Order module: creating a new order

Order module: getting orders listed

Order module: manual testing

Order module: manual testing

Inventory

Inventory module: manual testing

Inventory module: manual testing

Automated Testing

A number of test cases are already provided in the Tests class. For POST request to add one new product, the following JSON-formatted data can be used to formulate request body:

{
"name":"mobile", 
"desc":"details", 
"pricePerItem":120.80
}

Product testing in Apr-2025

Product module: automated testing

Order testing in Apr-2025

Order module: automated testing

Testing Done in Apr-2024

Product module: automated testing

Testing Done in May-2024

Product module: automated testing

Order Module

This module is for creating, listing, modifying and removing orders and order details.

API Base

The order API has its base at "/api/v1/orders".

Database Details

MySQL engine powers the order module. The data store is expected to be structured with infrequent field additions, modifications and removals. So, SQL database (RDBMS) technology is used for this. The database is deployed in a Docker container with a persistent volume to hold business data.

Steps to set local image repository registry up

  • Create the registry for local image repositories: docker run -d -p 5000:5000 --restart=always --name registry registry:3.0.0

Build app images with customer labels: docker build . -t localhost:5000/om-order

Push the images to the local repository: docker push localhost:5000/om-order

Spring Boot project dependencies (Intial Set)

Spring Boot project dependencies

Project dependency added for Wiremock

Project dependency added for Wiremock

Testing

Manual Testing

Order module: manual testing

Automated Testing

A number of test cases are already provided in the Tests class. For POST request to create one new order, the following JSON-formatted data can be used to formulate request body:

{
"orderNumber":"DE3343INT432342342345", 
"itemSkuCode":"DE342GES34233234", 
"pricePerItem":120.80,
"quantity":2
}

Testing Done on 11-Apr-2024

Order module: automated testing

Testing Done on 02-May-2024

Order module: automated testing

Testing Done on 06-May-2024 with WireMock

  • Before Stubbing: Order Request and Positive Scenario Response Order module: automated API testing with stubbing

  • Before Stubbing: Order Request and Negative Scenario Response Order module: automated API testing with stubbing

  • With Stubbing of Inventory API: Response Order module: automated API testing with stubbing

Inventroy Module

This module is for checking whether there is enough quantity available in inventory stock in order to place a new item order.

API Base

The inventory API has its base at "/api/inventory".

Database Details

MySQL engine powers the inventory module. The data store is expected to be structured with infrequent field additions, modifications and removals. So, SQL database (RDBMS) technology is used for this. The database is deployed in a Docker container with a persistent volume to hold business data.

Project Setup with Dependencies

The module for Product has been set up with the following dependencies, specified in Spring Init (https://start.spring.io/):

  • Lombok
  • Spring Web
  • Spring Data MySQL
  • Flyway
  • Testcontainers
  • Rest-Assured
  • RestClient (Spring Boot 3)
  • Swagger (for OpenAPI-based API documentation)

Spring Boot project dependencies

Testing

Manual Testing

For GET request to check the in-stock availability of an item, the following URL pattern can be prepared and hit:

http://localhost:8082/api/inventory?skuCode=DE342GES34233125&quantityForQuery=200

Positive Test Scenario

Inventory module: manual testing

Negative Test Scenario 01

Inventory module: manual testing

Negative Test Scenario 02

Inventory module: manual testing

Automated Testing

Testing Done on 11-Apr-2024

Inventory module: automated testing

Gateway Module

This module is for accepting the requests for external clients in first place and then redirecting them to appropriate microservices, such as:

  • to Product to view product list and to add new product to data store;
  • to Order to place an order for an item. It internally checks at Inventory service whether the requested quantity for the SKU is available in store (warehouse/shop);
  • one "backend access" for development purpose.

API Port

The gateway API is served at port 9000 and comes into access when the following URL patterns are hit:

Examplary values are shown the the inventory URL above.

Database Details

MySQL engine powers the user-authorization-and-authentication database. The data store is not accessed by the gateway code directly nor from the wild outside without any authorization check. The open source tool Keycloak is in place to manage user Authz-n-Authn data and very low variation in the data dictionary is expected. So, SQL database (RDBMS) technology is used for this. Keykloak tool and the database are both deployed in Docker containers with a persistent volumes.

Project Setup with Dependencies

The module for Product has been set up with the following dependencies, specified in Spring Init (https://start.spring.io/):

  • Gateway
  • OAuth2 Resource Server

Spring Boot project dependencies

Keycloak Config and Auth Testing

Configuration and manual testing across service endpoint integration are detailed out in the separate Markdown file: - gateway implementation with Keycloak.md

Contact Pointers

Credits and Gratitude

I thank all who have mentored, taught and guided me. Also, I appreciate who have supported my work with pair programming and more.

About

Order management APIs with three main components: exposing RESTful Services: Product, Order and Inventory. The services are integrated together and enjoy smooth communication. The real-world result is: SMOOTH USER EXPERIENCE !!!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published