Choreography-based Saga for Microservices and Serverless ApplicationsTech by Sunny Srinidhi - April 1, 20200 How do you take care of transactions in a microservices or serverless architecture? We’ll talk about choreography-based saga to solve this.
Here’s how you can Dockerize a Spring Boot web applicationTech by Sunny Srinidhi - March 24, 2020March 24, 20200 Docker is everywhere today, and if you’re not part of the wave, you’re missing out on a lot. But how to get started? I’ll show you how.
I started using SonarQube, and I’m glad I didTech by Sunny Srinidhi - March 18, 2020March 18, 20200 In this post, we’ll see what is SonarQube, how we can use it to analyse our code, and how to make sense of the results.
Geektrust Coding Challenge Changed MeTech by Sunny Srinidhi - March 11, 20201 I tried a GeekTrust coding challenge. And I was shocked and surprised at the results I got back, it was worth it. You should try it today.
Overriding Spring Boot properties in Amazon LambdaTech by Sunny Srinidhi - February 11, 2020February 11, 20200 In this post, we’ll see how we can maintain Spring Boot properties in an Amazon Lambda function without making code changes.
Binary Tree Implementation in JavaTech by Sunny Srinidhi - January 27, 2020January 27, 20201 In this post, we will see how we can implement a binary tree in Java. We will be using Double Linked List internally for this implementation.
Sorting in MongoDB in Java using BasicDBObjectTech by Sunny Srinidhi - January 24, 2020January 24, 20200 In this post, we’ll see how we can write a sort query for MongoDB in Java using the BasicDBObject class. I’ll use Spring Boot for this.
Emulating Apache Kafka with Amazon SNS and SQSTech by Sunny Srinidhi - January 22, 2020January 24, 20200 We’ll learn how to introduce the concept of consumer groups from Kafka in the AWS world using Amazon SNS and Amazon SQS.
Publishing messages to Amazon SNS from a Spring Boot applicationTech by Sunny Srinidhi - January 20, 2020January 24, 20200 We’ll learn how we can publish messages to an SNS topic from a Spring Boot application. This can be done from any Java code or framework.
Receiving messages from Amazon SQS in a Spring Boot applicationTech by Sunny Srinidhi - January 16, 2020January 24, 20200 In this post, we'll see how we can receive messages from an Amazon SQS queue in a Spring Boot application. This is a continuation of the previous post where we talked about how we can send messages to an SQS queue. The obvious next part of that is how do we receive those messages. So in this post, we'll do just that. If you don't have an Amazon SQS queue created already, checkout the previous post on how to do it. Here, I'll assume that you already have that pipeline setup. So I'm going to skip that part of the post. We'll jump right into the code. The Code The first thing we need to add in our Spring Boot application is the