Core Java
-

Understanding Java Object Arrays
In Java, everything is derived from the base class Object. The Object[] array is one of the most flexible types…
Read More » -

Sequenced Collections API: Standardizing Ordered Access
For decades, Java’s Collections Framework had a glaring inconsistency. Want the first element of a List? Call list.get(0). First element…
Read More » -

VMLens for Java Concurrency Testing
Writing unit tests for single-threaded code is standard practice. For concurrent, multi-threaded Java the same discipline wasn’t easy historically because…
Read More » -

JSpecify Annotations for Null Safety
The Billion Dollar Mistake Null pointer exceptions have plagued Java developers since the language’s inception, earning Tony Hoare’s famous designation…
Read More » -

Exploring Geometry Operations with JTS
The Java Topology Suite (JTS) is an open-source geometry engine written in Java. It provides a comprehensive API for modeling,…
Read More » -

Mocking Logger and LoggerFactory Example
1. Introduction The SLF4J library provides the Logger interface and LoggerFactory utility class to create a logger instance for a…
Read More » -

Reactive Programming with Project Reactor
The Case for Reactive Architecture Modern applications face unprecedented demands for responsiveness and scalability. Users expect sub-second response times while…
Read More » -

Java 25: Understanding Stable Values
Java 25 introduces an innovative feature: the StableValue API (JEP 502). This new API allows the creation of objects that…
Read More » -

Integrating a Java Backend with AI/LLM Services: Best Practices, Latency & Safety
The integration of large language models into enterprise Java applications has moved from experimental to essential. Organizations running Java backends…
Read More »


