Spring Boot

Saving Time with Structured Logging

Logging is the ultimate resource for investigating incidents and learning about what is happening within your application. Every application has logs of some type.

Read more

Validation with Spring Boot - the Complete Guide

Bean Validation is the de-facto standard for implementing validation logic in the Java ecosystem. It’s well integrated with Spring and Spring Boot.

Read more

Retry with Spring Boot and Resilience4j

In this series so far, we have learned how to use the Resilience4j Retry, RateLimiter, TimeLimiter, Bulkhead, and Circuitbreaker core modules.

Read more

Testing with Spring Boot and @SpringBootTest

With the @SpringBootTest annotation, Spring Boot provides a convenient way to start up an application context to be used in a test.

Read more

Per-Environment Logging with Plain Java and Spring Boot

Application logs are the most important resource when it comes to investigating issues and incidents. Imagine something goes wrong during your on-call rotation and you don’t have any logs!

Read more

Sending Emails with Amazon SES and Spring Cloud AWS

Email is a convenient way to communicate different kinds of events from applications to interested parties. Amazon Simple Email Service (SES) is an email platform that provides an easy and cost-effective way to send and receive emails.

Read more