🔍 What I Wish I Learned About Servlets and JSP Before Diving Into Spring FrameworkMay 2, 2025·5 min read
Beginner's Guide to Servlet API: Exploring Its LifecycleIn the previous lesson, we explored the details of the HTTP Request-Response cycle, learning how clients and servers communicate over the web. We covered HTTP methods, status codes, and the stateless nature of the protocol. Now, we're ready to see ho...Nov 9, 2025·16 min read
🧠 Understanding Spring Bean Scopes — What I Learned This WeekLast week, I delved deeper into Spring, focusing on a concept that frequently appeared in tutorials — Bean Scopes. Initially, I thought, "Isn't every bean just created once and used everywhere?" But I discovered that Spring provides significant contr...Apr 20, 2025·4 min read
Just started learning Spring , here's what i found !Over the past week, I finally started exploring the Spring Framework. I've heard about Spring for a long time, and since I'm trying to improve my Java skills, it made sense to dive into it. At first, Spring seems overwhelming with its beans, containe...Apr 20, 2025·4 min read
JavaBeans – Wait, What Are These Beans Doing in Java? ☕So, I recently started learning Spring Framework, and right at the beginning—boom 💥—I ran into this term: JavaBean. At first, I was like, “Is this another one of those unnecessarily fancy Java names?” But then I Googled, watched a few YouTube videos...Apr 6, 2025·3 min read
My Hibernate Learning Journey: A Student’s PerspectiveFor the past two weeks, I have been exploring Hibernate, one of the most popular ORM (Object-Relational Mapping) frameworks in Java. Coming from a background in JavaScript and recently diving into Java, I was initially unsure about how Hibernate work...Apr 2, 2025·5 min read
Learning JDBC: A Step-by-Step Introduction to Java Database ConnectivityA few weeks ago, I started learning JDBC (Java Database Connectivity) to understand how Java interacts with databases. Coming from a JavaScript background, where I used ORMs like Mongoose in Node.js, JDBC initially felt low-level and manual, but as I...Mar 19, 2025·5 min read
Key Takeaways from Learning Java MultithreadingMultithreading in Java always seemed like one of those "advanced developer" topics that I wouldn’t need anytime soon. But as i had worked on other projects using js and used multithreading there then i realize how it can chenge the performence of a a...Mar 9, 2025·5 min read