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 ...
What are implicit objects? List them?
Posted by Devin
Certain objects that are available for the use in JSP documents without being declared first. These objects are parsed by the JSP engine and inserted ...
What is the difference b/w variable declared inside a declaration part and variable declared in scriplet part?
Posted by Devin
Variable declared inside declaration part is treated as a global variable.that means after convertion jsp file into servlet that variable will be in o ...
« previous1 next »
