Skip to content
Snippets Groups Projects
Commit 1f369402 authored by Christopher Schankula's avatar Christopher Schankula :earth_africa:
Browse files

redirect map request to correct jsp

parent 16e2b7e1
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,9 @@ public class Director extends HttpServlet {
else if (req.equals("doHist.do"))
view = request.getRequestDispatcher("histogram.jsp");
else if (req.equals("doResult.do"))
view = request.getRequestDispatcher("result.jsp");
view = request.getRequestDispatcher("result.jsp");
else if (req.equals("doMap.do"))
view = request.getRequestDispatcher("map.jsp");
view.forward(request, response);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment