Reputation: 2794
Is this possible?
RequestDispatcher rd = request.getRequestDispatcher("index.html");
rd.forward(request, response);
Upvotes: 3
Views: 10993
Reputation: 15446
Yes it will work. You can get the request dispatcher for static/dynamic pages.
Upvotes: 2