Kuni

Hi, I’m a developer based in South Korea. With years of experience in the tech industry, I am passionate about creating meaningful solutions and continually learning in this ever-evolving field. I believe in the importance of leading a healthy and balanced economic life, and I aim to share insights, ideas, and practical tips to help others achieve the same. Through this blog, I hope to connect with like-minded individuals, exchange valuable knowledge, and grow together. Let’s explore, learn, and build a thriving life together! Let me know if you'd like further adjustments! 😊

A Deep Dive into Spring MVC Request Flow: How Your HTTP Request Travels

Understanding Spring MVC’s internal request processing can transform how you architect controllers, filters, interceptors, and exception handling in your application. Let’s walk through the typical execution flow—complete with illustrations from real-world projects. 🧭 1. DispatcherServlet: Spring’s Front Controller Every HTTP…

Filter vs. Interceptor in Spring: How to Choose and When to Use

When building robust Spring Boot or Spring MVC applications, you’ll often need to execute reusable logic—like logging, authentication, or compression—before or after handling HTTP requests. But should you use a Servlet Filter or a Spring Interceptor? In my experience as…