title | parent | tags | date | description | mrm | thumbnail | author | xredirect | slug | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Creating an E-commerce Site with Oracle Coherence CE and Micronaut |
|
|
2022-01-14 13:04 |
Coherence and Micronaut are powerful bedfellows when used together. This tutorial steps you through using them to build a hypothetical online sock shop. That's right, socks. |
WWMK220110P00039 |
assets/coherence-micronaut-diagram.png |
|
coherence-micronaut-sock-shop |
Welcome!
In this tutorial, we'll walk through creating a stateful, microservices-based application that uses Oracle Coherence CE as a scalable embedded data store and Micronaut Framework as an application framework.
Ultimately, the application we're building is an online store that sells socks, and is based on the SockShop Microservices Demo originally written and published under Apache 2.0 license by Weaveworks.
If you're curious, check out a working demo of the original application.
Demo summary:
This demo still uses the original front-end implementation provided by Weaveworks, but all back-end services have been re-implemented from scratch using Micronaut Framework and Oracle Coherence in order to showcase the many features of the Coherence Micronaut integration.
We also provide the implementations of the same application that uses Spring Boot or Helidon as the application framework, in case one of those is your framework of choice.
Topics covered in this tutorial:
- Local install
- Installing the Coherence Operator
- Installing a back end
- (Optional) Installing the back end into the
sockshop
namespace - Scaling the back end
- Complete application deployment
- Development (extending the application)
For more information, see:
To successfully complete this tutorial, you'll need the following:
- An Oracle Cloud Infrastructure (OCI) Free Tier account. [Start for Free]({{ site.urls.always_free }}).
- A MacOS, Linux, or Windows computer with
ssh
support installed. - OCI Cloud Shell - It provides a host of other OCI interfaces and tools.
- Kustomize - Make sure that you have a newer version of
kubectl
that supports it (at least 1.16 or above)
Before we get started, let's take a quick look at how this is all put together. The application consists of six back-end services rewritten from the ground up on top of Micronaut, implementing the API that the legacy front-end
service expects.
{% imgx assets/coherence-micronaut-diagram.png "Network diagram of the sock shop" %}
Reference - You can find additional details for each service by following these links:
Link | REST API |
---|---|
Product Catalog | allows you to search product catalog and retrieve individual product details |
Shopping Cart | allows you to manage customers' shopping carts |
Orders | allows customers to place orders |
Payment | allows you to process payments |
Shipping | allows you to ship orders and track shipments |
Users | allows you to manage customer information and provides registration and authentication functionality for the customers |
The main Sock Shop repository also contains Kubernetes deployment files for the whole application as well as a top-level POM file which allows you to easily build the whole project and import it into your favorite IDE.
Kubernetes scripts depend on Kustomize, so make sure that you have a newer version of kubectl
that supports it (at least 1.16 or above).
The easiest way to try the demo is to use the Kubernetes deployment scripts from this repo.
If you do, you can simply run the following commands from the coherence-micronaut-sockshop-sample
directory.
Install the Coherence Operator using the instructions in the Coherence Operator Quick Start documentation.
-
Create a namespace in Kubernetes called
sockshop
:kubectl create namespace sockshop
-
Install the back end into the
sockshop
namespace:kubectl --namespace sockshop apply -k k8s/coherence
The
-k
parameter above will usekubectl
withkustomize
to merge all the files under the specified directory and create all Kubernetes resources defined by them, such as deployments and services for each microservice.
Warning: There are a few important things to note about the original implementation of the the WeaveSocks front end, so keep these in mind as you try out the demo. It has a few bugs, including some security issues, and it hasn't been actively maintained for a few years. However, if you want to deploy it to see how it interacts with our back-end services, you can follow the steps in the sections below. {:.warn}
-
Install the
front-end
service by running the following command:kubectl apply -f k8s/optional/original-front-end.yaml --namespace sockshop
-
Port-forward to the
front-end
UI using the following processes:Mac/Linux:
kubectl port-forward --namespace sockshop service/front-end <localPort>:80
Windows:
kubectl port-forward --namespace sockshop service/front-end <localPort>:80
Note: If you have installed into a namespace then add the
--namespace
option to allkubectl
commands in these instructions. {:.notice}
At this point, you should be able to access the home page for the application by pointing your browser to: http://localhost:<localPort>/
.
You should then be able to browse the product catalog, add products to shopping cart, register as a new user, place an order, and browse order history, among other actions.
Once you are finished, you can clean up the environment by executing the following:
kubectl delete -f k8s/optional/original-front-end.yaml --namespace sockshop
kubectl delete -k k8s/coherence --namespace sockshop
If you wish to scale the back end, use one of the following commands:
-
Scale only the orders microservice
kubectl --namespace sockshop scale coherence orders --replicas=3
-
Scale all the microservices
$ for name in carts catalog orders payment shipping users do kubectl --namespace sockshop scale coherence $name --replicas=3 done
The steps in the Getting Started section showed you how to run the application locally. However, that may not be enough if you want to experiment with scaling individual services such as tracing data in Jaeger, monitoring services via Prometheus and Grafana, or making API calls directly using Swagger UI.
To do all of the above, you'll need to deploy the services into a managed Kubernetes cluster in the cloud. You can accomplish this by following the same set of steps described above (except for port forwarding, which isn't necessary) and performing a few additional steps described more fully in the Complete Application Deployment document.
If you want to modify the demo, follow these steps:
- check out the code for the project
- build it locally
- (optionally) push new container images to the repository of your choice
Reference - Development section
To explore more information about development with Oracle products:
The Universal Permissive License (UPL), Version 1.0