sendRedirect 不适用于 jsp 但适用于 html 页面

sendRedirect is not working for jsp but working for html page

> System.out.println("Coming here for Voting");
>       //response.sendRedirect("NewFile.html");-----> This is working
>       response.sendRedirect("Survey.jsp");-------> THis is not working getting 404 error.

HTML 和 JSP 都在同一个默认文件夹中..即

我尝试使用 response.sendRedirect("./Survey.jsp") 也无法获得 404

程序中的 jsp 文件似乎拼写为 Servey,而您的代码拼写为 Survey