Skip to content
Snippets Groups Projects
Commit 67f8d606 authored by Ray Liu's avatar Ray Liu
Browse files
web

# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
parents 7358b021 1f369402
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