Java javax.servlet Servlet fields, constructors, methods, implement or subclass

Example usage for Java javax.servlet Servlet fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.servlet Servlet.

The text is from its open source code.

Subclass

javax.servlet.Servlet has subclasses.
Click this link to see all its subclasses.

Implementation

javax.servlet.Servlet has the following implementations.
Click this link to see all its implementation.

Method

voiddestroy()
Called by the servlet container to indicate to a servlet that the servlet is being taken out of service.
ClassgetClass()
Returns the runtime class of this Object .
ServletConfiggetServletConfig()
Returns a ServletConfig object, which contains initialization and startup parameters for this servlet.
voidinit(ServletConfig config)
Called by the servlet container to indicate to a servlet that the servlet is being placed into service.
voidservice(ServletRequest req, ServletResponse res)
Called by the servlet container to allow the servlet to respond to a request.
StringtoString()
Returns a string representation of the object.