是否可以通过Requestdispatcher
转发方法显示着陆页的网址
RequestDispatcher r = request.RequestDispatcher("error.jsp");
r.forward(request,response);
不显示网址error.jsp
答案 0 :(得分:1)
不,不是。网址不会随forward
更改。
使用sendRedirect
查看浏览器中的网址更改。
response.sendRedirect("error.jsp");