Servlet中request.sendRedirect()不起作用

项目中的Servlet中重定向到wishingWall目录下的wishingWall.jsp时没有任何效果

response.sendRedirect("/wishingWall/wishingWall.jsp");


Servlet中request.sendRedirect()不起作用

可以考虑使用相对于根目录的路径,

response.sendRedirect(request.getContextPath()+"/wishingWall/wishingWall.jsp");


request.getContextPath()获得相对于项目根目录的上下文路径,因此更改路径后能实现跳转,因此可以得到不跳转是关于路径的逻辑错误

你可能感兴趣的:(redirect)