void sendRedirect(String location) throws IOException;
页面跳转的一种方式(重定向) 会导致数据的丢失
request.getRequestDispatcher("success.jsp").forward(request,response);
可以请求网页跳转 跳转过后,址不改变。
void sendRedirect(String location) throws IOException;
页面跳转的一种方式(重定向) 会导致数据的丢失
request.getRequestDispatcher("success.jsp").forward(request,response);
可以请求网页跳转 跳转过后,址不改变。