Thursday, August 14, 2003

Improve performance of tomcat/cocoon
overwrite doGet in servlet

doHead{

protected void doHead(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException,
java.io.IOException

Receives an HTTP HEAD request from the protected service method and handles the request. The client sends a HEAD request when it wants to see only the headers of a response, such as Content-Type or Content-Length. The HTTP HEAD method counts the output bytes in the response to set the Content-Length header accurately.

If you override this method, you can avoid computing the response body and just set the response headers directly to improve performance. Make sure that the doHead method you write is both safe and idempotent (that is, protects itself from being called multiple times for one HTTP HEAD request).

If the HTTP HEAD request is incorrectly formatted, doHead returns an HTTP "Bad Request" message.
}

0 Comments:

Post a Comment

<< Home