Java

12 reasons for using a random data generator – introducing Dummy4j

Having a sufficient sample of lifelike data greatly improves the application development process. In most cases, when we start working…

4 years ago

How to validate credit card numbers with the Luhn algorithm in Java

Entering a credit card number is prone to random errors and typos. As a matter of fact, it's easy to…

4 years ago

How to set up Spring Boot app documentation with Springfox

Learn how to generate documentation for your Spring Boot application using Springfox Boot Starter. This article extends the Spring Boot…

4 years ago

How to permanently set JAVA_HOME on Ubuntu

If a project needs the JAVA_HOME variable pointing to a particular value and this requirement is not met on our…

5 years ago

Monitoring Spring Boot projects with Prometheus

Prometheus is an open-source platform used to collect metrics from applications. You can easily apply it to monitor your Spring…

5 years ago

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