void sendRedirect(String location) throws IOException;
页面跳转的一种方式(重定向) 会导致数据的丢失
request.getRequestDispatcher("success.jsp").forward(request,response);
可以请求网页跳转 跳转过后,址不改变。
关于重定向和请求转发的区别
最新推荐文章于 2024-09-05 14:45:00 发布
void sendRedirect(String location) throws IOException;
页面跳转的一种方式(重定向) 会导致数据的丢失
request.getRequestDispatcher("success.jsp").forward(request,response);
可以请求网页跳转 跳转过后,址不改变。