Tag

URL Mapping

0 views collected around this technical thread.

Top Architect
Top Architect
Sep 26, 2020 · Backend Development

Building a Mini Spring MVC Framework from Scratch Using Pure JDK

This article walks through creating a lightweight Spring MVC‑like framework by setting up a clean web project, defining custom annotations, implementing a DispatcherServlet that scans packages, instantiates beans, performs dependency injection, maps URLs to controller methods, and finally runs the application without any Spring dependencies.

Dependency InjectionJavaServlet
0 likes · 5 min read
Building a Mini Spring MVC Framework from Scratch Using Pure JDK
Java Captain
Java Captain
Mar 13, 2018 · Backend Development

Servlet Overview: Introduction, Lifecycle, Eclipse Development, URL Mapping, and Thread Safety

This article provides a comprehensive tutorial on Java Servlets, covering their purpose, lifecycle, creation in Eclipse, configuration of web.xml mappings, URL pattern rules, default servlet behavior, thread‑safety concerns, synchronization techniques, and the deprecated SingleThreadModel approach.

EclipseJavaServlet
0 likes · 20 min read
Servlet Overview: Introduction, Lifecycle, Eclipse Development, URL Mapping, and Thread Safety