What are the ways to call a JSP(TestDisplay.jsp) from a Servlet ?
getServletContext().getRequestDispatcher("/DateDisplay.jsp").forward(HttpServletRequest,HttpServletResponse);
sendPage("TestDisplay", HttpServletRequest,HttpServletResponse)
callPage("TestDisplay", HttpServletRequest,HttpServletResponse)
HttpServletResponse.sendRedirect("/TestDisplay.jsp")