Dec 21, 2025 · 2 min read · [1] Start Your Docker Playground Create a new instance. [2] Prepare the Setup Script In the terminal window, type: touch get-setup-script.sh Click the Editor button at the top of the terminal window. In the editor, open the file get-setup-script.sh....
Join discussion
Dec 14, 2025 · 4 min read · JavaServer Pages (JSP) is a server-side technology used to build dynamic web pages. Internally, every JSP is converted into a Servlet, which is why understanding JSP syntax and lifecycle is critical. JSP Syntax Tags Explained <%= %> — Expression Tag ...
Join discussion
Sep 28, 2025 · 5 min read · Java Server Pages Web development has evolved massively over the last few decades. While modern frameworks like Spring Boot, Angular, and React dominate the market today, Java Server Pages (JSP) played a crucial role in building dynamic web applicati...
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 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
Jul 7, 2024 · 1 min read · Before the Spring Framework, developing web applications in Java required using a mix of different libraries and frameworks. We had several technologies before the Spring Framework. Servlets and JSP (JavaServer Pages): For handling HTTP requests an...
Join discussion
Jul 1, 2024 · 2 min read · 📌 What is a Design Pattern? A design pattern is a tried and tested solution to a common problem in a specific context. They serve as templates to guide software development, making the process more efficient and standardized. 🛠️ Example: MVC (Model...
Join discussion
Jun 11, 2024 · 3 min read · Certainly! Let's consider an example where we want to access custom properties defined in the application.properties file. We'll demonstrate how to access these properties using the @Value annotation and @ConfigurationProperties approach. Step-by-Ste...
Join discussionMay 25, 2024 · 4 min read · JUnit is one of the most widely used testing frameworks for Java programming. It provides a simple yet powerful way to write and run repeatable tests, making it an essential tool for developers to ensure the reliability and correctness of their code....
Join discussion