If you want to include JSP in the generated response, use
request.getRequestDispatcher("/file.jsp").include(request, response);
If you want to forward this jsp use
request.getRequestDispatcher("/file.jsp").forward(request, response);
Bozho source
share