Spring Boot

Run a Spring Boot app in a Docker container

For development purposes, you can easily run Spring Boot apps with Docker Compose. (more…)

5 years ago

Monitoring Spring Boot projects with Actuator

Shipping an application to the production requires reliable mechanisms responsible for auditing, health checks, and metrics collection. Fortunately, with Spring…

5 years ago

Spring Boot Log4j 2 advanced configuration #2 – add a Rollover Strategy for log files

We don't want to allocate too much space for our log files. Let's see how we can manage their livespan.…

5 years ago

Spring Boot Log4j 2 advanced configuration #1 – saving logs to files

Apart from having logs displayed directly in the console, we can configure our Spring Boot project to write log entries…

5 years ago

Add Flyway migrations to your Spring Boot project

Having automated database migrations will significantly ease managing schema development. With Spring Boot support we can effortlessly handle versioned SQL…

5 years ago

Add a PostgreSQL database to your Spring Boot project

An in-memory database may be sufficient during the early phase of project development. However, sooner or later you will need…

5 years ago

Spring Boot API documentation with Swagger

Each API requires comprehensive documentaiton. You can generate it using Swagger for a REST API. Its clients will get standardized…

6 years ago

ManyToOne bidirectional association in Hibernate — common issues solved

This post covers issues that may occur when you map entities with ManyToOne bidirectional association. Read about mapping this relation while avoiding LazyInitializatinException,…

6 years ago

Securing your Spring Boot and Angular app with JWT #2 – Backend

In this article you can read about applying Spring Security to the backend module of a Spring Boot and Angular…

6 years ago

Securing your Spring Boot and Angular app with JWT #1 – Introduction

You can use the JSON Web Token standard as a part of your authentication and authorisation solution in a project built with…

6 years ago