I want to forward a request from the servlet to the action using RequestDispacher
like this
RequestDispatcher dispatcher=request.getRequestDispatcher("hello.action");dispatcher.forward(request, response);
It's not working. How can I resolve this problem?