Java

Creating and Analyzing Thread Dumps

A thread is a basic path of execution in a program. Most of the applications we build today execute in a multi-threaded environment.

Read more

Designing an AWS CDK Project with Java

In the article “Getting Started with AWS CDK”, we have already deployed a Spring Boot application to AWS with the CDK.

Read more

Clean Unit Tests with Mockito

In this article we will learn how to mock objects with Mockito. We’ll first talk about what test doubles are and then how we can use them to create meaningful and tailored unit tests.

Read more

Getting Started With Java: Build a Robot Arena

You are just beginning your programming career? Or you have dabbled a bit in programming but want to get into Java?

Read more

Using Maven’s Bill of Materials (BOM)

As Java developers, we may maintain many applications using Maven for their dependency management. These applications need upgrades from time to time to be up to date and to add new features or security updates.

Read more

Implementing Plugins with Java’s Service Provider Interface

In this article, we are going to talk about Java’s Service Provider Interface (SPI). We will have a short overview of what the SPI is and describe some cases where we can use it.

Read more