How to Enable Spring Data MongoDB Auto Index Creation

Overview If you have tried setting auto-index-creation in spring data mongodb without success, like this: Then this post will show you how to work around this. Let’s get started. Enable auto index creation in MongoDB First, let’s consider this document Here, I defined an unique index for my document named rate_limit_config_service_name but when the application … Read more

Logging Fundamentals in Spring Boot

Introduction Logging is an essential aspect of software development, providing insights into what’s happening inside an application running in development or production. Effective logging practices help developers diagnose issues, understand application behavior, and improve performance. Spring Boot simplifies the logging process, allowing developers to focus more on building features rather than configuring logging infrastructure. This … Read more