Feb 4 · 3 min read · MVC in One Breath Spring MVC follows the Model–View–Controller pattern: Model → Data + business logic result View → UI (HTML via JSP, Thymeleaf, FreeMarker, etc.) Controller → Handles requests and decides what to return But controllers don’t rec...
Join discussion
Dec 11, 2025 · 6 min read · What JDBC Actually Is? JDBC is basically the middleman between your Java code and any relational database.Without JDBC, your Java app has no idea how to talk to MySQL, PostgreSQL, Oracle, etc. Think of JDBC as: Java → JDBC → Database It translates ...
Join discussion
Dec 8, 2025 · 6 min read · Before Spring Boot, before the giant frameworks… the backbone of Java web development was Servlets. And honestly, even today, everything modern (Spring MVC, Jakarta EE, etc.) still sits on top of the same concepts. If you’ve ever wondered “What actua...
Join discussion
Sep 18, 2025 · 5 min read · If you’ve ever wondered how dynamic websites like shopping portals, online banking, or even your college ERP systems work behind the scenes — chances are Servlets are playing a key role. In this blog, we’ll break down what Servlets are, how they work...
Join discussion
Jul 22, 2025 · 10 min read · Introduction Welcome to this brief yet interesting primer on the evolution of Java backend development—a journey from basic components to more complex component-based systems. This tutorial explores the progression from Servlets to JavaServer Pages (...
Join discussion
May 22, 2025 · 20 min read · Servlet Before the release of spring and spring boot, the primary way of making web applications in Java was by using Java Enterprise Edition which was renamed to Jakarta Enterpise Edition in 2017. The package names for the corresponding libraries we...
Join discussionMay 2, 2025 · 5 min read · When I began learning the Spring Framework, especially Spring MVC, I thought I could skip the older technologies like Servlets and JSP, assuming Spring was modern and there was no need to spend time on legacy Java web tech. That mindset caused me pro...
SFESaurav and 2 more commented
Nov 25, 2024 · 9 min read · Spring Boot revolutionized how we build Java applications by simplifying configurations, streamlining deployment, and providing robust development tools. But to appreciate the elegance of Spring Boot, it's essential to understand its origins and the ...
IAVinay and 1 more commented