Browsing Tag
springboot
31 posts
How do you handle optional fields in request body in Spring Boot?
Introduction Think about filling out a signup form online. Some fields like username and password are mandatory, while…
Setting Up Java & Maven for Spring Boot – Step-by-Step Guide
Introduction Before starting with Maven or Spring Boot, we need to set up the basic development environment. This…
Why I’m Building My Own Distributed Database
As a backend developer, I’ve worked with Redis, PostgreSQL, MongoDB, and countless other databases. But I always felt…
How Kiponos.io Ends Config Chaos in CI/CD
If you’ve ever built a Spring Boot app with application.properties, application-test.yml, application-prod.yml, environment variables tucked inside Docker containers,…
5 Best Spring Boot + MongoDB + AWS Projects for Fresh Graduates
As a software engineering professional helping mentees build their portfolios, I understand the importance of practical projects that…
File Download Feature in Spring Boot
To understand file upload/download in backend development, let’s first get comfortable with what a file really is; 🧱…
Day 3 : DX-First Thinking: Why I Added @EnableTenantIsolation to My Spring Boot Starter
DX-First Thinking: Why I Added @EnableTenantIsolation to My Spring Boot Starter Day 3 of building multi-tenant-springboot-starter was less…
From JVM to Native Compilation with Spring Boot: What It Means and Why It Matters
Traditionally, Java developers have followed the same standard flow: write Java code, compile it to bytecode, and run…
Maven Lifecycle Simplified – Animated Visual Guide
Understanding the Maven build lifecycle is crucial for every Java developer—but let’s be honest, the official documentation can…
Boosting Performance: Essential Memory Optimization Techniques for Spring Boot Applications
Optimizing memory usage is critical for ensuring your Spring Boot applications perform efficiently, especially under heavy workloads. Proper…