All Stories

Spring REST - Automate an API Client Request

We will create an API Client to automate the creation of an Order based on a combination of Buyers, Suppliers, Customer Numbers, and Articles.

Production-ready Features - Spring Actuator

Spring Boot includes additional features to help you monitor and manage your application when deployed to production.

OCP Oracle Certified Professional Java, Test - Building Blocks

This article provides practical test prep material for the OCP Java SE Developer Certification, which will help you develop skills that remain in high demand in the IT industry.

Enum, Flags and bitwise operators

Java enums, bit flags, and bitwise operations are powerful features that can greatly enhance the functionality and efficiency of your code. Understanding how to leverage these features effectively can lead...

Understanding the Basics of Generics in Java

Generics in Java provide a powerful and flexible way to create classes, interfaces, and methods that can work with different data types while ensuring type safety. Introduced in Java 5,...

An Introduction to Functional Programming in Java

Functional programming is a programming paradigm that treats computation as the evaluation of mathematical functions and avoids changing-state and mutable data. While Java is traditionally seen as an object-oriented language,...