Servlet RequestDispatcher interface

RequestDispacher is an interface that provides the facility to forward a request to another resource or include the content of another resource. RequestDispacher provides a way to call another resource from a servlet. Another resource can be servlet, jsp, or html. Methods of RequestDispacher interface: 1. forward(ServletRequest request, ServletResponse response): This method forwards a request … Read more