34 Servlets
34 Servlets
8-Mar-13
Servers
Typical requests: provide a web page, upload or download a file, send email
A server is also the software that responds to these requests; a client could be the browser or other software making these requests Typically, your little computer is the client, and someone elses big computer is the server
However, any computer can be a server It is not unusual to have server software and client software running on the same computer
Apache
66% of the web sites on the Internet use Apache Full-featured and extensible Efficient Robust Secure (at least, more secure than other servers) Up to date with current standards Open source Free
Apache is:
Ports
Ports are identified by positive integers A port is a software notion, not a hardware notion, so there may be very many of them Typical port numbers:
21FTP, File Transfer Protocol 22SSH, Secure Shell 25SMTP, Simple Mail Transfer Protocol 53DNS, Domain Name Service 80HTTP, Hypertext Transfer Protocol 8080HTTP (used for testing HTTP) 7648, 7649CU-SeeMe 27960Quake III
Ports II
But it is also:
http://www.cis.upenn.edu:80/~matuszek
The http: at the beginning signifies a particular protocol (communication language), the Hypertext Transfer Protocol The :80 specifies a port By default, the Web server listens to port 80
The Web server could listen to any port it chose This could lead to problems if the port was in use by some other server For testing servlets, we typically have the server listen to port 8080 If I had sent it to some other port, say, 99, my request would either go unheard, or would (probably) not be understood
5
CGI Scripts
server
script
client
Servlets
server
servlet
client
Advantages:
Running a servlet doesnt require creating a separate process each time A servlet stays in memory, so it doesnt have to be reloaded each time There is only one instance handling multiple requests, not a separate instance for every request Untrusted servlets can be run in a sandbox Less choice of languages (CGI scripts can be in any language)
Disadvantage:
Tomcat
Tomcat is the Servlet Engine than handles servlet requests for Apache
Tomcat is a helper application for Apache Its best to think of Tomcat as a servlet container Apache can be installed without Tomcat Tomcat can be installed without Apache
Servlets
In practice, most servlets extend the javax.servlet.http.HttpServlet class Some servlets extend javax.servlet.GenericServlet instead
Servlets, like applets, usually lack a main method, but must implement or override certain other methods
10
When a servlet is first started up, its init(ServletConfig config) method is called
init should perform any necessary initializations init is called only once, and does not need to be thread-safe
service calls another method depending on the type of service requested Usually you would override the called methods of interest, not service itself service handles multiple simultaneous requests, so it and the methods it calls must be thread safe
destroy is called only once, but must be thread safe (because other threads may still be running)
11
HTTP requests
When a request is submitted from a Web page, it is almost always a GET or a POST request The HTTP <form> tag has an attribute action, whose value can be "get" or "post" The "get" action results in the form information being put after a ? in the URL
Example: http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF8&q=servlets The & separates the various parameters Only a limited amount of information can be sent this way
The service method dispatches the following kinds of requests: DELETE, GET, HEAD, OPTIONS, POST, PUT, and TRACE
A GET request is dispatched to the doGet(HttpServletRequest request, HttpServletResponse response) method A POST request is dispatched to the doPost(HttpServletRequest request, HttpServletResponse response) method These are the two methods you will usually override doGet and doPost typically do the same thing, so usually you do the real work in one, and have the other just call it public void doGet(HttpServletRequest request, HttpServletResponse response) { doPost(request, response); }
13
public class HelloServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); String docType = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 " + "Transitional//EN\">\n"; out.println(docType + "<HTML>\n" + "<HEAD><TITLE>Hello</TITLE></HEAD>\n" + "<BODY BGCOLOR=\"#FDF5E6\">\n" + "<H1>Hello World</H1>\n" + "</BODY></HTML>"); } Dont worry, well take this a little at a time! }
14
The superclass
GenericServlet is protocol independent, so you could write a servlet to process any protocol In practice, you almost always want to respond to an HTTP request, so you extend HttpServlet
A subclass of HttpServlet must override at least one method, usually one doGet, doPost, doPut, doDelete, init and destroy, or getServletInfo
15
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { This method services a GET request The method uses request to get the information that was sent to it The method does not return a value; instead, it uses response to get an I/O stream, and outputs its response Since the method does I/O, it can throw an IOException Any other type of exception should be encapsulated as a ServletException The doPost method works exactly the same way
16
Parameters to doGet
Our first example doesnt get any input, so well discuss this a bit later
I/O in Java is very flexible but also quite complex, so this object acts as an assistant
17
The second parameter to doGet (or doPost) is HttpServletResponse response Everything sent via the Web has a MIME type The first thing we must do with response is set the MIME type of our reply: response.setContentType("text/html");
Because we will be outputting character data, we need a PrintWriter, handily provided for us by the getWriter method of response: PrintWriter out = response.getWriter(); Now were ready to create the actual page to be returned
18
From here on, its just a matter of using our PrintWriter, named out, to produce the Web page First we create a header string:
String docType = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 " + "Transitional//EN\">\n"; This line is technically required by the HTML spec Browsers mostly dont care, but HTML validators do care
Input to a servlet
URL ? name=value & name=value & name=value (Illegal spaces added to make it more legible) Actual spaces in the parameter values are encoded by + signs Other special characters are encoded in hex; for example, an ampersand is represented by %26
Parameter names can occur more than once, with different values A POST request supplies parameters in the same syntax, only it is in the body section of the request and is therefore harder for the user to see
20
Input parameters are retrieved via messages to the HttpServletRequest object request
Most of the interesting methods are inherited from the superinterface ServletRequest
Returns an Enumeration of the parameter names If no parameters, returns an empty Enumeration Returns the value of the parameter name as a String If the parameter doesnt exist, returns null If name has multiple values, only the first is returned Returns an array of values of the parameter name If the parameter doesnt exist, returns null
21
Enumeration review
Its an older class, and the names are longer Enumeration e = myVector.elements(); while (e.hasMoreElements()) { System.out.println(e.nextElement()); }
Example use:
22
All parameter values are retrieved as Strings Frequently these Strings represent numbers, and you want the numeric value
Similarly for short, float, and long These can all throw a NumberFormatException, which is a subclass of RuntimeException
But:
Whats left?
Weve covered enough so far to write simple servlets, but not enough to write useful servlets
Use configuration information Authenticate users Keep track of users during a session Retain information across different sessions Make sure our servlets are thread safe Communicate between servlets
But remember: The most difficult program in any language is Hello World!
25
The End
26