ServletContext Interface

An object of ServletContext is created by the web container at time of deploying the project. This object can be…

11 years ago

ServletConfig Interface

ServletConfig is implemented by the servlet container to initialize a single servlet using init(). That is, you can pass initialization…

11 years ago

Send Redirect in Servlet

The sendRedirect() method of HttpServletResponse interface can be used to redirect response to another resource, it may be servlet, jsp…

11 years ago

HttpSession interface

The HttpSession object represents a user session. A user session contains information about the user across multiple HTTP requests.When a…

11 years ago

RequestDispatcher Interface

In this tutorial you will learn how to use forward() method of RequestDispatcher in Servlet forward() method of RequestDispatcher forwards…

11 years ago

HttpResponse Servlet

The HttpServlet class request processing methods take two parameters. javax.servlet.http.HttpRequest javax.servlet.http.HttpResponse The HttpServletResponse object generates a response to return to…

11 years ago

HttpRequest

The HttpServlet class request processing methods take two parameters. javax.servlet.http.HttpRequest javax.servlet.http.HttpResponse For instance, here is the signature of the HttpServlet.doGet()…

11 years ago