This is a living document to provide a central place for common Spring Web MVC use cases. With this Spring MVC cheat

Read More

With Spring Boot, you only need one dependency to have a solid testing infrastructure: Spring Boot Starter Test. Using this starter, you'll

Read More

Spring Boot provides a set of annotations you can use for writing tests for a specific part of your application. These annotations

Read More

While watching Andy Wilkinson's great talk, Testing Spring Boot Applications on YouTube, he brought my attention to a hidden gem for testing

Read More

Spring Once you use the Spring WebClient at multiple places in your application, providing a unified configuration with copy-pasting, e.g., common headers

Read More

Monitoring the outcome of your HTTP calls is essential in a distributed system. Increased response times or error status codes can break

Read More

Ensuring your application is working properly is a critical part of continuous integration and delivery. Unit tests help you to test your

Read More

Alongside the WebClient, Spring provides a WebTestClient for testing purposes. The API of this class is similar to the WebClient and allows

Read More

With this blog post, you'll get an overview of how to get started with Kotlin and Maven for building Spring Boot applications.

Read More

This article showcases a testing recipe for writing integration tests for Spring Boot applications using WireMock and JUnit. In one of the

Read More