Can we dispatch request to an HTML inside servlet
java, requestdispatcher, servlets
Solution
Yes. you can dispatch a request to a HTML page.
Problem
Is this possible? ``` RequestDispatcher rd = request.getRequestDispatcher("index.html"); rd.forward(request, response); ```