Download presentation
Presentation is loading. Please wait.
Published byLorraine Logan Modified over 8 years ago
1
4 Being a Servlet: request AND response Servlets live to service clients. A servlet’s job is to take a client’s request and send back a response. The request might be simple: “get me the Welcome page.” Or it might be complex: “Complete my shopping cart check-out.” The request carries crucial data, and your servlet code has to know how to fi nd it and how to use it. The response carries the info the browser needs to render a page (or download bytes), and your servlet code has to know how to send it. Or not... your servlet can decide to pass the request to something else (another page, servlet, or JSP) instead.
2
Objects of the Chapter
5
More about the servlet’s lift
11
Lifecycle and Methods
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.