Servlets | Advance Java | Session 3 | Aether

Опубликовано: 04 Март 2026
на канале: Aether
27
1

This session is about the basics of Servlets, They are the Java programs basically runs on the Java-enabled web server or application server. Servlets are used to handle the request obtained from the web server and further process the request and produce the response, then send response back to the web server.

About Servlets :
Works on the server-side.
Are capable of handling complex requests which are obtained from web server.

Execution of Servlets involves 6 basic steps:

The client send the request to the web server.
Web server receives the request.
Further the web server passes the request to the corresponding servlet.
Servlet further processes the request and generates the response (output).
The servlet sends the response back to the web server.
The web server sends the response back to the client and finally the client browser displays it on the screen.

Understand the Lifecycle and basic properties.

Have a great session

Link to next session: