Java
-
Running code on Spring Boot startup
Spring Boot does a lot of configuration automatically for us but sooner or later you’ll have to do some custom…
Read More » -
Migrating from Commons CLI to picocli
Apache Commons CLI, initially released in 2002, is perhaps the most widely used java command line parser, but its API…
Read More » -
Java Integer Cache – Why Integer.valueOf(127) == Integer.valueOf(127) Is True
In an interview, one of my friends was asked that if we have two Integer objects, Integer a = 127; Integer…
Read More » -
Understanding H2 InMemory Database with Spring Boot
Introduction Basically the database setup involves several steps before we can use it through configured datasource in our application. This…
Read More » -
Spring Boot Microservices , Docker and Kubernetes workshop – part2
In the previous post we created our first micro service “ProductService” using SpringBoot and Docker. In this part we will go…
Read More » -
Behavioural Design Patterns: Mediator
Previously we had a look at the iterator pattern. The mediator pattern is way different on what it tries to…
Read More » -
Build a RESTful API in Go using AWS Lambda
In this post we will learn to design, build, and deploy a RESTful API in Go using AWS Lambda. Before starting, let…
Read More » -
Java optional parameters
When you design a method in a Java class, some parameters may be optional for its execution. No matter it…
Read More » -
In any incomprehensible situation go scripting
Scripting is one of the most popular ways to make your application adjustable for client needs right at runtime. As…
Read More »