Hope you are safe in this pandemic. Since from few years, I'm working on Microservices and related ecosystem. Though to write down a series of blogs based on my understanding and experience. As continuation to my previous post related to Cloud Native way of application development, we talked about what is mean by cloud native … Continue reading Microservices – Handling Distributed Data
Author: Anupam Pawar
Cloud-Native Twelve-Factor Applications
Since few months I thought to write about Cloud-Native. Is it just a buzzword or it truly worthy jargon ? Believe me It is not just a buzzword, It's a new Architectural style to build scalable, complex and microservice based applications that are easy to deploy, automate and maintain. It helps business to service their … Continue reading Cloud-Native Twelve-Factor Applications
Certified Kubernetes Application Developer – CKAD Certification Tips
Hi Friends, I'm writing this article to share my own experience with CKAD exam. I appeared for Kubernetes certification exam and I cleared it in 1st attempt. After my AWS certification, I decided to explore the world of K8s. The kubernetes as a service provided by across cloud providers (EKS by AWS, AKS by Azure … Continue reading Certified Kubernetes Application Developer – CKAD Certification Tips
Essentials JVM Options
Hi Folks, This article summirizes few most important JVM options or JVM arguments that can be used to monitor/debugging purposes or essential running of java application in production. Setting Java Heap SizeGarbage CollectionGarbage Collection LoggingSet Free Heap RatioHandling out of memory errorTracing of ClassloaderSetting TimeZone Setting Java Heap Size: This is widely used and most … Continue reading Essentials JVM Options
Spring Security Login Form
Hi Folks, This article is quick overview of how to use Spring boot security basic login with In-Memory authentication. Its a web based application, when user browse the application a spring security based Login Form presented to the user. The Maven dependencies are: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> Once these dependenceis added … Continue reading Spring Security Login Form
Setting up Vault Server as Google Cloud Storage as Storage Backend
Hello Folks ! Recently I worked on task to isolate the passwords, database credentials from properties file and store it inside the vault.This post explain how to install and setup the vault server, store data as Key-value pair and usage of this vault data in spring boot application.Vault comes with many secrete engines (and so … Continue reading Setting up Vault Server as Google Cloud Storage as Storage Backend
Shutdown Spring boot Application Job Programatically
Hi Folks, Recently, one of my colleague approached me for following problem statement: He develop a spring-boot application which is running as a cron job. The job interval time say every 2 mins. The application pulls the number of records from upstream system and process each record in loop updating 5-6 transaction tables for each … Continue reading Shutdown Spring boot Application Job Programatically
How to generate Java – Spring Code from OpenAPI YAML spec
Hi Folks, Lets see quickly how can generate the Spring Boot code from OpenAPI Specification i.e. YAML file. Swagger is popular tool to design the API. I'm working on some integration project and my Business Analyst shared a OpenAPI spec which describe the name of API, input parameters , data types, the output response, http … Continue reading How to generate Java – Spring Code from OpenAPI YAML spec
AWS Certified Solution Architect Associate – 2019 SAA-C01
It is an immense pleasure to announce that recently I passed AWS Certified Solution Architect - Associate exam. I choose to have AWS certified because I have some working exposure on AWS while working on my some freelancing clients/project in past. AWS is also a leading cloud provider and so I decided to go for … Continue reading AWS Certified Solution Architect Associate – 2019 SAA-C01
ARDUINO – Sound Sensor example – IOT
Hello Folks, This is second article on IoT sensors today. Today I'm going to show how to connect and use sound sensor. Sound sensor used detect the sound in proximity. The Pre-requisite for this and next few articles are: 1. Raspberry Pi or Arduino Board - in simple words it a small size computer that … Continue reading ARDUINO – Sound Sensor example – IOT