|
Home TOC |
|
What is a Servlet?
A servlet is a Java programming language class used to extend the capabilities of servers that host applications accessed via a request-response programming model. Although servlets can respond to any type of request, they are commonly used to extend the applications hosted by Web servers. For such applications, Java Servlet technology defines HTTP-specific servlet classes.
The
javax.servletandjavax.servlet.httppackages provide interfaces and classes for writing servlets. All servlets must implement theServletinterface, which defines life cycle methods.When implementing a generic service, you can use or extend the
GenericServletclass provided with the Java Servlet API. TheHttpServletclass provides methods, such asdoGetanddoPost, for handling HTTP-specific services.This chapter focuses on writing servlets that generate responses to HTTP requests. Some knowledge of the HTTP protocol is assumed; if you are unfamiliar with this protocol, you can get a brief introduction to HTTP in HTTP Overview (page 525).
|
Home TOC |
|