Java

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

Managing Multiple JDK Installations With jEnv

As developers, we’re often working on different codebases at the same time. Especially in environments with microservices, we may be switching codebases multiple times a day.

Read more

Processing Files With Java 8 Streams

Streams, introduced in Java 8, use functional-style operations to process data declaratively. The elements of streams are consumed from data sources such as collections, arrays, or I/O resources like files.

Read more

Implementing Bulkhead with Resilience4j

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

Read more