Posts

Creating Spring Boot MVC application with AWS DynamoDB in 10 mins

Image
AWS DynamoDB DB is a serverless NOSQL database. You can understand how to build a spring boot Java web MVC application (Game Leaderboard) reading a AWS DynamoDB in 10 mins. Source of the demo code: https://github.com/babysteps-topro/spring-mvc-dynamodb Command to run the project: mvn spring-boot:run Video explain the table design: https://youtu.be/V0GtrBfY7XM Prerequisite: Install the AWS CLI: https://youtu.be/pE-Q_4YXlR0 Video explain the how to create the table: https://youtu.be/sBZIVLlmpxY

AWS DynamoDB Scan and Query (with hands-on demo)

Image
There are two types of read operation in DynamoDB. You can know the difference between them in this video.  Source of the demo code: https://github.com/babysteps-topro/DynamoDBQueryScan.git Prerequisite: Install the AWS CLI: https://youtu.be/pE-Q_4YXlR0 Video explain the table design: https://youtu.be/V0GtrBfY7XM

AWS DynamoDB Table Design in 10 mins

Image
AWS DynamoDB is a serverless, key and value pair NOSQL database. The schema design concept is different from traditional relational database. You can understand the DynamoDB table design within 10 minutes in this video. 

AWS CLI (command line Interface) in 3mins

Image
The AWS Command Line Interface (CLI) is a tool to manage with your AWS services. This video shows you how to install, configure and run some S3 command to interact with S3 bucket. 

Develop Spring boot REST API in AWS - PART 4/4 (CodePipeline / CI CD)

Image
This is the last video (part4) in this demo series. We will demonstrate how to create the whole CICD pipeline in this tutorial video. It involves the following steps: (1)  Create CodePipeline (2) Add build stage to pipeline (3) Add deploy stage to pipeline (4) Add manual approval step to pipeline Thank for watching! Source Code: https://github.com/babysteps-topro/aws-springboot-pipeline1.git

Develop Spring boot REST API in AWS - PART 3/4 (CodeDeploy / Blue Green Deployment)

Image
In this video tutorial (part3), I have demonstrate the blue/green deployment of  the Spring boot REST API.  I will show you the the following steps in the demonstration: (1)  02:12 Create IAM role (2)  04:07 Create an Application Load Balancer (3)  07:27 Create Security Group For ECS cluster (4)  09:09 Create ECS cluster (5)  11:24 Create Task Definition (6)  14:00 Create ECS Service (7)  17:53 Create CodeDeploy In the next part, I will demonstrate the whole CI/CD pipeline.

Develop Spring boot REST API in AWS - PART 2/4 (ECS Cluster)

Image
In this video tutorial (part2), we continue to explore developing spring boot REST API on AWS. We will focus on ECS in this part. It involves the following steps: (1) AWS ECS Basic  (2) ECS Cluster demo (3) ECS Task Definition demo (4) ECS Service demo Thank for watching! In the next part, I will discuss the CodeDeploy. Source Code: https://github.com/babysteps-topro/aws-springboot-pipeline1.git