Java

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

Deploying a Spring Boot App with the AWS CDK

In the article “Getting Started with AWS CloudFormation”, we have already played around a bit with AWS CloudFormation. We have deployed a network stack that provides the network infrastructure we need, and a service stack that deploys a Docker image with our Spring Boot application into that network.

Read more

Creating and Analyzing Java Heap Dumps

As Java developers, we are familiar with our applications throwing OutOfMemoryErrors or our server monitoring tools throwing alerts and complaining about high JVM memory utilization.

Read more

Painless Code Formatting with EditorConfig

Are you working on a project with other developers where reading code is not as fun as you would want because of inconsistent coding styles?

Read more

Implementing a Circuit Breaker with Resilience4j

In this series so far, we have learned about Resilience4j and its Retry, RateLimiter, TimeLimiter, and Bulkhead modules. In this article, we will explore the CircuitBreaker module.

Read more

Managing Multiple JDK Installations With SDKMAN!

In the world of microservices and the 6-month release cycle of Java, we often have to change between Java versions multiple times a day.

Read more