Chapter 04 - The Servlet Model

In this chapter, we talk about the basic concepts of the Servlet model. This web application contains the following two examples from the chapter.
  1. This page shows the triggers that cause the browser to send HTTP GET and POST requests. It also shows how to retrieve servlet initialization parameters.
     
  2. This web application also implements the simple banking application explained in section 4.8.3. Here is the Login page for the application
    As explained in Listing 4.9, the usernames/passwords are hard coded in the LoginServlet. You can use any of the following values:
    1. ann/aaa
    2. john/jjj
    3. mark/mmm

    Once you login, you should see the account information of the user.