当我尝试重定向到.jsp文件时,我收到404错误,就像服务器无法看到它一样。请帮忙解决这个问题。
我的重定向:
Tour tour = new Tour();
tour.setCountryTo(request.getParameter("countryTo"));
tour.setAmountOfDays(request.getParameter("amountOfDays"));
session.setAttribute("tour", tour);
response.sendRedirect("final.jsp");
答案 0 :(得分:0)
我不确定,但我会这样说:
response.sendRedirect("/final.jsp");