Skip to main content

Posts

Showing posts from November, 2018

Spring Based Restful Microservice Architecture and Implementation - Part 1

In this post we will see how a spring based restful microservice architecture looks like and detailed steps to implement this architecture. Since this is a vast topic, I will divide this post into multiple posts. In the first post (Part 1), we will see the spring based Microservice Architecture for a simple use case. Identify various components and tools that will be used to implement this architecure.  Without spending too much time on the basics, we will dwelve right away into the overall architecture. Tools and Technologies used : Spring Tool Suite (https://spring.io/tools3/sts/all)  Postman (https://www.getpostman.com/apps)  mongoDB (https://www.mongodb.com/download-center/community)  Java 8  Installation of Spring Tools Suite, Postman and Java JDK 8 are straight forward and I will not go into details of these installations.  Steps Involved in creating springboot microservices: In Part 1 of this series, we will see how to implement...