Blog

If you’re a software developer or system administrator, you’ve probably heard of Docker – a tool that makes it easy to create and deploy applications in a standardized way. Docker allows you to package an application and all its dependencies into a single “container” that can be run anywhere, regardless of the underlying system. A…

Read More Dockerfile for a Spring Boot Application: A Beginner’s Guide

Welcome to this tutorial where I will explain Docker, a platform that simplifies building, shipping, and running applications using containers. In this tutorial, you will learn about the benefits of using Docker containers and how to install Docker on your computer. Whether you are new to Docker or looking to learn more, I will guide…

Read More Docker for Beginners: An Introduction to Docker, Images, and Containers

In this tutorial, we will explore how to ignore unknown JSON fields in Java using Jackson. We will cover the default behaviour, ignoring unknown properties on a class level, ignoring unknown properties globally, and how to deal with incomplete JSON. Additionally, we will discuss security concerns related to ignoring unknown properties using annotations. If you’re…

Read More Ignore Unknown JSON Fields with Java Jackson

In this tutorial, you will learn about the difference between two Spring Boot dependencies – Spring Boot Actuator and Spring Boot Starter Actuator. If you’re new to Spring Boot, these terms may sound confusing, but don’t worry, by the end of this tutorial, you’ll understand the difference between them. Spring Boot is a popular framework…

Read More Spring Boot Actuator vs Spring Boot Starter Actuator

In this tutorial you will learn how to enable and how to view Spring Cloud API Gateway Routes using Spring Boot Actuator. Developers use Actuator to enable API Gateway routes in order to keep track of the routes being used in their application. By exposing these routes through Actuator endpoints, developers can get valuable information…

Read More Viewing Spring Cloud API Gateway Routes with Spring Boot Actuator