Does RequestDispatcher object exits as it is an interface and as for i know we cant create an object to interface. So what is happening in following code
RequestDispatcher requestDispatcher = request.getRequestDispatcher('somePage');
Are we creating object to RequestDispatcher or to subclass that implements RequestDispatcher.
Thanks in advance.