Posts

Showing posts from June, 2024

How to perform CRUD Operations via API Using Kotlin Micronaut with AWS

Image
Building a CRUD REST API with Kotlin Micronaut, AWS Lambda, API Gateway, DynamoDB, and S3 Introduction In this blog, we'll walk you through the process of building a CRUD REST API using Kotlin Micronaut , deploying it on AWS Lambda , and integrating it with AWS API Gateway , DynamoDB , and S3 . Pre-requisites Java JDK 11 or higher (Amazon Corretto recommended) Micronaut CLI (mn-cli, Latest Version) AWS Primary Account with root user access Need to install & configure AWS command line interface named aws-cli Steps 1. Firstly install & verify Java JDK(Amazon Corretto), Micronaut CLI & AWS CLI C:\Users\HP>D: D:\>cd Prabha D:\Prabha>mkdir car D:\Prabha>cd car # Verify Java installation D:\Prabha\car>java --version openjdk 11.0.16.1 2022-08-12 LTS OpenJDK Runtime Environment Corretto-11.0.16.9.1 (build 11.0.16.1+9-LTS) OpenJDK 64-Bit Server VM Corretto-11.0.16.9.1 (build 11.0.16.1+9-LTS, mixed mode) # Verify Micronaut installation D:\Prabha\car>mn --v...