Servlet & Servlet Container


Table of Contents
  1. Introduction : What is servlet and servlet container
  2. How a Servlet Container Manages Requests
  3. Understand by code
  4. Problems of Servlets & Servlet Containers Solved by Spring Framework
  5. How Spring Uses Servlet Concepts

Introduction : What is servlet and servlet container

How a Servlet Container Manages Requests

Request Handling Flow: Multithreading in Servlet Containers

Understand by code
Servlet:
@WebServlet("/hello") // URL Mapping
public class HelloServlet extends HttpServlet {
    
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        // Logic - return response
    }
}
    
web.xml
<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="3.0">
    <servlet>
        <servlet-name>HelloServlet</servlet-name>
        <servlet-class>com.example.HelloServlet</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>HelloServlet</servlet-name>
        <url-pattern>/hello</url-pattern>
    </servlet-mapping>
</web-app>
    

Problems of Servlets & Servlet Containers Solved by Spring Framework
  1. Manual Object Creation & Dependency Management
  2. Problem: Solution
  3. Boilerplate Code in Servlets
  4. Problem Solution
  5. Complex Request Handling & Mapping
  6. Problem Solution z
  7. Session & State Management Complexity
  8. Problem Solution
  9. Exception Handling
  10. Problem Solution
  11. Hard-to-Test Servlets
  12. No Built-in Security in Servlets

How Spring Uses Servlet Concepts