ServletContext: Defines a set of methods that a servlet uses to communicate with its servlet container, for example, to get the MIME type of a file, d ...
Search results for servlet
A GenericServlet has a service() method aimed to handle requests. HttpServlet extends GenericServlet and adds support for doGet(), doPost(), doHead() ...
What is preinitialization of a servlet?
Posted by Devin
A container doesnot initialize the servlets ass soon as it starts up, it initializes a servlet when it receives a request for that servlet first time. ...
Explain ServletContext.
Posted by Devin
ServletContext interface is a window for a servlet to view it's environment. A servlet can use this interface to get information such as initializatio ...
The javax.servlet.Servlet interface defines the three methods known as life-cycle method.
public void init(ServletConfig config) throws ServletExcepti ...
« previous1 next »
