A Servlet that Reads a Parameter
Define a new servlet class called HelloUser.
This is identical to the class HelloWorld, except that the line:
out.println(“<h1>Hello World!</h1>”) ;
is replaced with
out.println(“<h1>Hello ” +
request.getParameter(“who”) + “!</h1>”) ;