en | fr

Spring Boot Error Server Configuration

Published on 2024-02-27 | Updated on 2025-11-30 | 6 mins read | Tutorial

Spring Boot provides flexible error handling configuration options that allow you to control what information is exposed in error responses. This is crucial for maintaining security in production while providing detailed debugging information in development environments.

This tutorial showcases varying error response behaviors across different deployment profiles using a REST controller that intentionally throws errors for demonstration purposes.

Continue reading

Bulk Update With Spring Data MongoDB Reactive

Published on 2022-06-20 | Updated on 2025-11-30 | 10 mins read | Tutorial Reactive Programming

In order to update documents in a MongoDB collection, we often use update requests, if the volume of data is too large, it could lead to performance issues and overconsumption of hardware resources.

We will implement a solution to enrich and update efficiently a large amount of data using Spring Data MongoDB Reactive.

Continue reading